这样可以吗?

来源:4-2 Python之if-else语句

索罗斯7922145

2022-04-23 20:40

age=17

if age>=18:

    print('adult')

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

else:

    print('teenager')

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


写回答 关注

4回答

  • weixin_慕瓜0570812
    2022-07-08 08:36:15

    没啥问题


    age = int(input("请输入你的年龄"))

    也可以

    weixin...

    超纲了超纲了 哈哈

    2022-07-22 15:49:46

    共 1 条回复 >

  • Lenu
    2022-07-04 21:35:22

    或许还可以这样写:

    age=eval(input('请输入您的年龄:'))

    if age>=18:

        print('You age is {},'.format(age),'adult')

    else:

        print('You age is {},'.format(age),'teenager')


    http://img.mukewang.com/62c2ec73000178d108540270.jpg

  • 星光可达鸭
    2022-06-28 17:24:52

    age = eval(input('请输入年龄'));

    if age >= 18:

        print('adult')

    else:

        print('teenager')

    加个输入好一些吧

  • 索罗斯7922145
    2022-04-23 20:41:49

    可以的哟

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154143 学习 · 1075 问题

查看课程

相似问题