datetime.today属性错误

时间:2013-07-23 19:42:00

标签: datetime python-3.x

我正在尝试使用Datetime.today代码倒计时秒,但每次我调用时间属性时,解释器都会拒绝该属性存在。例如:

x=datetime.today()
x= x.hour
print(x)

将返回:

Traceback (most recent call last):
File "C:\Users\manuel\Downloads\graphics master v1.py", line 2, in <module>
x=x.hour
AttributeError: 'builtin_function_or_method' object has no attribute 'hour'

在其他程序中,我测试了这个,以确保这是正确的属性和语法,但在我的主程序中,我一直收到此错误。

1 个答案:

答案 0 :(得分:2)

datetime.today是一种方法而非属性。

尝试datetime.today()