Python-轉換距1970年的秒數為可讀的時間格式
阿新 • • 發佈:2019-02-17
情景:
程式獲得了一個距1970.1.1的秒數,假設為“1355028714.92” 。這個長長的秒數看著是不是有些頭大?於是乎就想辦法將這個秒數轉換成可讀的時間格式,當然轉換的方法是很多的,下面列出一個比較簡單方便的轉換方法--通過Python轉換。
1.在控制檯下輸入:python
- rain:softWare zhaoguangyu$ python
- Python 2.7.2 (default, Jun 202012, 16:23:33)
-
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
- Type "help", "copyright", "credits"or"license"for more information.
2.匯入時間函式:import time
- >>> import time
3.列印當前距1970的秒數:print time.time()
- >>> print time.time()
- 1355028714.92
4.print time.ctime(1355028714.92)
- >>> print time.ctime(1355028714.92)
-
Sun Dec 9