python三方库datetime获取当前的年月日
时间: 2023-05-17 18:02:49 浏览: 177
Python库 | hypothesis-datetime-0.9.2.tar.gz
5星 · 资源好评率100%
可以使用以下代码获取当前的年月日:
import datetime
now = datetime.datetime.now()
year = now.year
month = now.month
day = now.day
print("当前日期为:{}年{}月{}日".format(year, month, day))
阅读全文