Python中对时间戳、时间的处理
time模块
获得时间戳
1 | timestmamp = time.time() |
将时间戳转换成时间
1 | import time |
将时间转换成时间戳
- 利用
strptime()
函数将时间转换成时间数组 - 利用
mktime()
函数将时间数组转换成时间戳
1 | import time |
重新格式化时间
- 利用
strptime()
函数将时间转换成时间数组 - 利用
strftime()
函数重新格式化时间
1 | import time |
按指定的格式获取当前时间
1 | import time |
Author: Mrli
Link: https://nymrli.top/2019/01/23/Python中对时间戳、时间的处理/
Copyright: All articles in this blog are licensed under CC BY-NC-SA 3.0 unless stating additionally.