python获取当前日期和时间的方法
更新时间:2015年04月30日 15:22:48 作者:重负在身
这篇文章主要介绍了python获取当前日期和时间的方法,涉及Python操作日期与时间的相关技巧,非常具有实用价值,需要的朋友可以参考下
本文实例讲述了python获取当前日期和时间的方法。分享给大家供大家参考。具体如下:
import datetime # Get a datetime object now = datetime.datetime.now() # General functions print "Year: %d" % now.year print "Month: %d" % now.month print "Day: %d" % now.day print "Weekday: %d" % now.weekday() # Day of week Monday = 0, Sunday = 6 print "Hour: %d" % now.hour print "Minute: %d" % now.minute print "Second: %d" % now.second print "Microsecond: %d" % now.microsecond # ISO Functions print "ISO Weekday: %d" % now.isoweekday() # Day of week Monday = 1, Sunday = 7 print "ISO Format: %s" % now.isoformat() # ISO format, e.g. 2010-12-24T07:10:52.458593 print "ISO Calendar: %s" % str(now.isocalendar()) # Tuple of (ISO year, ISO week number, ISO weekday) # Formatted date print now.strftime("%Y/%m/%d")
希望本文所述对大家的Python程序设计有所帮助。
相关文章
Pandas将列表(List)转换为数据框(Dataframe)
这篇文章主要介绍了Pandas将列表(List)转换为数据框(Dataframe),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-04-04python 代码实现k-means聚类分析的思路(不使用现成聚类库)
这篇文章主要介绍了python 代码实现k-means聚类分析(不使用现成聚类库),本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-06-06PyQt5基本控件使用之消息弹出、用户输入、文件对话框的使用方法
本文主要介绍PyQt界面实现中常用的消息弹出对话框、提供用户输入的输入框、打开文件获取文件/目录路径的文件对话框。 本文主要针对这三种控件的主要场景进行介绍。感兴趣的朋友跟随小编一起看看吧2019-08-08
最新评论