机器学习之Python基础3

age=int(input(“请输入年龄”))
python_score=int(input(“请输入分数”))
if age>18 and python_score>50:
print(“可以去网吧”)
else:
print(“不可以”)

猜你喜欢

转载自blog.csdn.net/weixin_43247522/article/details/84501811