0

学习使用 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)
4

2 回答 2

2

将您的导入更改为:

from datetime import datetime
于 2014-02-10T00:33:23.203 回答
1

它应该是

import datetime
now = datetime.datetime.now()
print now
于 2014-02-10T00:33:22.450 回答