在 python 中获取当前日期可以使用 datetime.today() 或 date.today() 函数,分别返回包含当前日期和时间的 datetime 对象或表示当前日期的 date 对象。date 对象可以进一步提取年、月、日属性,如 datetime.today().year、datetime.today().month 和 datetime.today().day。
如何在 Python 中获取当前日期
在 Python 中,你可以使用 datetime 模块轻松地获取当前日期。
方法 1:使用 datetime.today()
datetime.today() 函数返回一个包含当前日期和时间的 datetime 对象。你可以使用 date() 属性从该对象中提取日期部分。
from datetime import datetime current_date = datetime.today().date() print(current_date) # 输出:yyyy-mm-dd
登录后复制
方法 2:使用 date.today()
date 模块提供了 date.today() 函数,直接返回一个表示当前日期的 date 对象。
import date current_date = date.today() print(current_date) # 输出:yyyy-mm-dd
登录后复制
获取日期的其他部分
如果你需要获取当前日期的其他部分(如年、月、日),可以使用 datetime 或 date 对象的属性:
- year:返回年份
- month:返回月份
- day:返回日期
from datetime import datetime current_date = datetime.today() year = current_date.year month = current_date.month day = current_date.day print(year, month, day) # 输出:yyyy mm dd
登录后复制
以上就是python如何获得当前日期的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:城南北边,转转请注明出处:https://www.dingdanghao.com/article/669439.html