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

哪里出了问题?

age = 19

if age>=18:

    print('今年{}岁'.format(age))

提问者:慕工5555 2020-10-15 10:12

个回答

  • weixin_慕沐9146932
    2020-10-15 14:14:08
    已采纳

    year = '今年 {} 岁'

    age = 19

    if age >= 18:

        print(year.format(age))

  • 大象无形呀
    2020-10-16 10:43:20

    没问题啊,我这运行通过啊