欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python-输入输出1

程序员文章站 2022-07-15 08:37:27
...
import datetime

myyear = input("请输入您的出生年份:")
nowyear = datetime.datetime.now().year
age = nowyear-int(myyear)
print("您的年龄为:"+str(age))
if age<18:
    print("您现在是未成年人@[email protected]")
if age>=18 and age<=66:
    print("您现在是青年-_-")
if age>=66 and age<80:
    print("您现在是中年[email protected][email protected]~")
if age>=80:
    print("您现在是老年*-_-*")
相关标签: python