The code used:
Started with
def spam():
eggs = 12
return eggs
print spam()
Ended with
def spam():
eggs = 12
return eggs
print spam()
The interaction looked like this:
12
Started with
def spam():
eggs = 12
return eggs
print spam()
Ended with
def spam():
eggs = 12
return eggs
print spam()
The interaction looked like this:
12
No comments:
Post a Comment