请教下为啥会运行失败?

来源:4-1 Python之if语句

weixin_慕妹6145722

2022-04-11 18:20

# Enter a code

# coding:UTF-8

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

if age > 18:

    print("咚咚的年龄:{}".format(age))

    print("咚咚是成年人")

    print("adult")

else:

    print("咚咚是未成年")


写回答 关注

2回答

  • goldenroc
    2022-05-29 14:43:56

    试试不在网站在线运行,换到自己的计算机中的运行环境试试?

  • ab8026794
    2022-04-12 19:38:39

    代码没问题

Python3 入门教程(新版)

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

155720 学习 · 1088 问题

查看课程

相似问题