What is the difference between python functions `datetime.now()` and `datetime.today()`?

前端 未结 3 1158
有刺的猬
有刺的猬 2021-02-03 19:05

What is the difference between python functions datetime.now() and datetime.today() ?

In [1]: from datetime import datetime

3条回答
  •  庸人自扰
    2021-02-03 19:28

    See the documentation: now() provides an optional timezone, and can give more precision.

提交回复
热议问题