8 lines
164 B
Python
8 lines
164 B
Python
#mystuff = {'apple': "I AM APPLES!"}
|
|
#print(mystuff['apple'])
|
|
|
|
def apple():
|
|
print("I AM APPLES!")
|
|
|
|
# just a variable
|
|
tangerine = "Living refleciton of a dream"
|