"""
Created on 4/20/22

@author: lindsaygross
"""
def assignment7():
    stanza1 = "Little freshman Lindsay" + "\n" +  \
              "took CS for the QS" + "\n" + \
              "she had no idea what Python was" + "\n" + \
              "but alas, Pycharm became her best friend" + "\n"

    stanza2 = "I cried when trying to solve my first assignment" + "\n" + \
              "but the TA office hours quickly became home" "\n" + \
              "I was struggling." + "\n" + \
              "but alas," + "\n" + \
              "I knew I would pass" + "\n" + \
              "(knock on wood)" + "\n"

    stanza3 = "I now could say I am a computer scientist" + "\n" + "I am a " \
                                                                   "wizard on  " \
                                                                 "the keyboard"\
              + "\n" + \
              "and even on paper, too" + "\n" + "From hours of writing code " \
                                                "on paper" + \
              "\n"\
              + \
              "I can now say I have the skills of a computer" + "\n" + "from " \
                                                                       "the " \
                                                                       "tips " \
                                                                       "of my fingers " \
                                                                       "I am " \
                                                                       "a " \
                                                                       "computer scientist" + "\n"

    stanza4 = "I now am" + "\n" + "a changed woman" + "\n" + \
              "for I," + "\n" + "now know how to code" + "\n" + "I am" \
              + "\n" + "a woman in stem" + "\n"

    stanza5 = "never did I ever think" + "\n" + "a running code would bring " \
                                                "me the " + "\n" + \
              "joy" + "\n" + "that I have felt" + "\n" + "oh how I love, " \
                                                         "a running code"\
              + "\n"

    poem = stanza1 + "\n" + stanza2 + "\n" + stanza3 + "\n" + stanza4 + "\n" +\
           stanza5
    return poem


if __name__ == '__main__':
    print(assignment7())




if __name__ == '__main__':
    pass
