码迷,mamicode.com
首页 > 编程语言 > 详细

python之time模块

时间:2017-08-05 22:52:05      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:code   运行   格式   结果   获取   bsp   python   time模块   blog   

 1 # time模块功能举例
 2 import time
 3 
 4 # 获取当前时间戳
 5 t = time.time()
 6 print(获取当前时间戳:, t)
 7 
 8 # 当前时间的struct_time形式
 9 t = time.localtime()
10 print(当前时间的struct_time形式:, t)
11 print(当前年份:, t.tm_year)
12 
13 # 当前时间的字符串形式
14 t = time.ctime()
15 print(当前时间的字符串形式:, t)
16 
17 # 当前时间自定义格式的字符串
18 t = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
19 print(当前时间自定义格式的字符串:, t)

运行结果:

1 获取当前时间戳: 1501808069.9558172
2 当前时间的struct_time形式: time.struct_time(tm_year=2017, tm_mon=8, tm_mday=4, 
3                                              tm_hour=8, tm_min=54, tm_sec=29, 
4                                              tm_wday=4, tm_yday=216, tm_isdst=0)
5 当前年份: 2017
6 当前时间的字符串形式: Fri Aug  4 08:54:29 2017
7 当前时间自定义格式的字符串: 2017-08-04 08:54:29

 

python之time模块

标签:code   运行   格式   结果   获取   bsp   python   time模块   blog   

原文地址:http://www.cnblogs.com/gongxr/p/7291731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!