请问最后的print 'end'只能放在分段编码中吗?
>>> age = 20
>>> if age >= 18:
... print 'your age is', age
... print 'adult'
...
... print 'end'
File "<stdin>", line 5
print 'end'
这个是按照教案上的代码运行的结果,结果就是运行不出来
>>> age = 20
>>> if age >= 18 :
... print 'your age is', age
... print 'adult'
... print 'end'
...
your age is 20
adult
end
这是将end放入分段编码中,可以运行出来,难道end只能放在分段编码中吗?