簡単なコードを入力すると:
import datetime
datetime.utcnow()
、エラーメッセージが表示されました:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
datetime.utcnow()
AttributeError: 'module' object has no attribute 'utcnow'
しかし、Python のドキュメントutcnow
はここにあります: https://docs.python.org/library/datetime.html#datetime.datetime.utcnow。utcnow
私のコンピュータで動作しないのはなぜですか? ありがとうございました!