有没有办法弄两个回答 一个是已经成年一个是你还未成年
age = int(input("请输入你的年龄:")) if age >= 18: print("你已经成年了") else: print("你是未成年人")
加个判断就好了