学习使用 python 编码我遇到了 datetime not defined 错误。我在 codecademy 上到处搜索,没有看到我的代码错在哪里……对不起我的新手,并感谢您的帮助。
Instructions:
Print the current date in the form of mm/dd/yyyy.
my code:
import datetime
now = datetime.now()
print now
current_month = now.month
current_day = now.day
current_year = now.year
print str(current_month)+"/"+str(current_day)+"/"+str(current_year)