Temmu
Well-known member
greets!
help in resolving this is appreciated. no, it is not homework. i'm a bit old for that.
thanks!
this file is tryme3.py
the output is:
same output with tryme3a w/o the .py
help in resolving this is appreciated. no, it is not homework. i'm a bit old for that.
thanks!
this file is tryme3.py
Code:
def three_lines():
print
print
print
def nine_lines():
three_lines()
three_lines()
three_lines()
print "line 1"
nine_lines()
print "line 10"
the output is:
>>> tryme3a.py
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'tryme3a' is not defined
same output with tryme3a w/o the .py