问答详情
源自:4-1 Python之if语句

为什么运算错误

age=19
if age>=18
    print('your age={}'.format(age))
    print('aduit')


提问者:Q清风 2021-10-21 13:34

个回答

  • qq_慕容0191174
    2022-03-26 22:23:05

    if 语句结尾的 冒号 没有加上


  • weixin_慕先生524907
    2021-11-21 15:56:35

    少了:

  • weixin_慕前端2178504
    2021-10-21 13:59:17

    age=19

    if age>=18:

        print('aduit')

        print('your age={}'.format(age))