'''
Created on Dec 11, 2017

@author: lenae ryan
'''
def poem(words):
    Computer Science?
    More like Computer Die-ence
    They call this class a 101  
    So I thought that it would be more fun
    But, in reality, It has been quite the struggle
    APTs, Assignments, So much to juggle
    However, I should not complain
    For I now know how to process a filename
    As well as make lists, tuples, and dictionaries
    At first this all seemed extremely scary 
    Oh, how I was such a noob
    When I did not know about the for loop
    So, Professor Rodger, I thank thee
    For the coding knowledge you bestowed upon me
Strings, floats, and integers
The color red is now a curse
    The color green, on the other hand, 
    Is the most beautiful color in the Python land
    Farewell compsci 101
    We have truly had quite the run


if __name__ == '__main__':
    print poem(words)
    pass