用法:
datetime.ctime()
返回一个表示日期和时间的字符串:
>>> from datetime import datetime >>> datetime(2002, 12, 4, 20, 30, 40).ctime() 'Wed Dec 4 20:30:40 2002'
输出字符串将
not
包含时区信息,无论输入是感知的还是幼稚的。d.ctime()
相当于:time.ctime(time.mktime(d.timetuple()))
在本机 C
ctime()
函数(time.ctime()
调用,但datetime.ctime()
不调用)符合 C 标准的平台上。
相关用法
- Python datetime.datetime.fromisoformat用法及代码示例
- Python datetime.datetime.timetuple用法及代码示例
- Python datetime.datetime.isoformat用法及代码示例
- Python datetime.datetime.astimezone用法及代码示例
- Python datetime.date.isoformat用法及代码示例
- Python datetime.date.replace用法及代码示例
- Python datetime.date.ctime用法及代码示例
- Python datetime.date.fromisoformat用法及代码示例
- Python datetime.date.isocalendar用法及代码示例
- Python datetime.time.fromisoformat用法及代码示例
- Python datetime.utcoffset()用法及代码示例
- Python datetime.tzinfo()用法及代码示例
- Python datetime.timetz()用法及代码示例
- Python datetime.time.isoformat用法及代码示例
- Python datetime.timedelta用法及代码示例
- Python datetime.tzinfo.fromutc用法及代码示例
- Python datetime.timedelta()用法及代码示例
- Python datetime.tzname()用法及代码示例
- Python datetime.tzinfo.dst用法及代码示例
- Python datetime astimezone()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 datetime.datetime.ctime。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。