datetime函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datetime函数相关的知识,希望对你有一定的参考价值。

datetime函数:

vi a1.py

#!/usr/bin/python

import datetime

now=datetime.datetime.now()
today=datetime.date.today()
yesterday=datetime.date.today() - datetime.timedelta(days=1)

print now
print today
print yesterday

:wq

python a1.py

以上是关于datetime函数的主要内容,如果未能解决你的问题,请参考以下文章

Python中datetime模块中strftime/strptime函数

Python datetime&time

datetime函数和random.seed()函数的应用

python中datetime模块中strftime/strptime函数

Python连载8-datetime包函数介绍

python时间处理,datetime中的strftime/strptime