if 语句使用的问题,python3.6.6运行,除了print后要加括号,还有哪里有问题啊?
age=20
if age>=18:
print ('your age is', age)
print ('adult')
print ('END')
这样写哪里错了呢?
age=20
if age>=18:
print ('your age is', age)
print ('adult')
print ('END')
这样写哪里错了呢?
2020-06-16
举报