Q清风
2021-10-21 13:34
age=19 if age>=18 print('your age={}'.format(age)) print('aduit')
if 语句结尾的 冒号 没有加上
少了:
age=19
if age>=18:
print('aduit')
print('your age={}'.format(age))
Python3 入门教程(新版)
154164 学习 · 1075 问题
相似问题
回答 2
回答 3