我正在尝试使用 python 创建一个程序,它可以帮助我们判断时间、日期和年份,但是我面临一些问题。
from datetime import datetime
now = datetime.now()
current_day = now.day
print current_day
current_month = now.month
print current_month
current_year = now.year
print current_year
input(press enter to exit)
每次我运行它时,它都会说语法无效,显然它与第三行有关。我不知道该怎么办!谁能帮我?