year = int(input("请输入出生年份:")) month = int(input("请输入出生月份:")) day = int(input("请输入出生日期:")) print(f"我的出生日期是{year}年{month}月{day}日。")
请输入出生年份:1992 请输入出生月份:12 请输入出生日期:5 我的出生日期是1992年12月5日。
第二题 →