Programing Language/Python
[Python] AttributeError: module 'datetime' has no attribute 'now'
pcm9881
2023. 2. 21. 19:43
문제
now는 datetime 모듈 안에 datetime 클래스에서 꺼내서 사용해야 합니다.
import datetime
해결방법
from datetime import datetime
728x90