Thomas Laskowski

3
reputation
5
def about_me(quick=False):
    '''Displays information about me'''
    TO_THE_POINT = "I code because it is fun."
    REASON_TO_CODE = " it quenches my creative thirst"
    PREF_LANGUAGE = " Python"
    HIGH_SCHOOL = " Camden County Technical Schools"
    if quick == True:
        print(TO_THE_POINT)
    else:
        print("I love to code because" + REASON_TO_CODE + ".\nI prefer to code in " + PREF_LANGUAGE + ".\nI graduated from " + HIGH_SCHOOL + ".")

In [1]: about_me()