python中time.mktime()的轉換
對於當前時間的轉換上,如果有人接觸過localtime函式,就會發現mktime()的作用跟它相反,是專門用於對本地時間進行轉換的。其最後的結果以秒來展示,方便了很多人對時間的直觀理解。接下來我們對time.mktime()的概念、語法、引數、返回值進行學習,然後帶來轉換的例項用法。
1.概念
將本地時間列表轉化為浮點數的秒來表示。
2.語法
time.mktime(t)
3.引數
t -- 結構化的時間或者完整的9位元組元素。
4.返回值
返回用秒數來表示時間的浮點數。
5.例項
import time print(time.localtime()) # 傳入localtime()返回的struct_time print(time.mktime(time.localtime())) # 傳入9 元組數 print(time.mktime((2020,12,10,8,52,30,3,345,0)))
以上就是python中time.mktime()的轉換,大家對於這種本地時間的轉換方法,還可以學習對應的localtime函式,同時注意二者使用的區別,不要記混淆了。
(推薦作業系統:windows7系統、Python 3.9.1,DELL G3電腦。)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2471/viewspace-2830898/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python中列表、字典和字串的互相轉換Python字串
- Python中CSV讀取和轉換Python
- Python中各進位制轉換Python
- Python中怎麼轉換字串大小寫Python字串
- Python的OpenCV轉換影像大小PythonOpenCV
- 在 Shell 中轉換 Python 正規表示式Python
- python中的時間轉換,秒級時間戳轉string,string轉時間Python時間戳
- python hex轉ascii轉換Python程式碼的簡單方法PythonASCII
- python Pil byteio轉換Python
- [Python] 各種轉換Python
- python opencv轉換bytesioPythonOpenCV
- 如何在Python中將語音轉換為文字Python
- 【python】進位制轉換Python
- java中的型別轉換Java型別
- python str與bytes之間的轉換Python
- Python——格式轉換的學習筆記Python筆記
- 『無為則無心』Python基礎 — 11、Python中的資料型別轉換Python資料型別
- Python小知識:如何在Python 3中轉換資料型別Python資料型別
- 將json資料轉換為Python字典將json資料轉換為Python字典JSONPython
- Python 輕量化簡繁轉換Python
- 在 Python 中將列表轉換為字串需要哪些技術Python字串
- 史上最全的 Python 3 型別轉換指南Python型別
- 使用Python 實現 PDF 到 HTML 的轉換PythonHTML
- Python字典格式與JSON格式的相互轉換PythonJSON
- JS中的資料型別轉換:String轉換成Number的3種方法JS資料型別
- python中sys,os,time模組的使用(包括時間格式的各種轉換)Python
- Spark SQL中的RDD與DataFrame轉換SparkSQL
- Spark中的三種隱式轉換Spark
- 瞭解JavaScript中的型別轉換JavaScript型別
- python str與byte轉換 encode decodePython
- 【python】str與json型別轉換PythonJSON型別
- python實現中文和unicode轉換PythonUnicode
- Python數字轉換中文大寫Python
- python實現字串轉換整數Python字串
- python將tif投影轉換至basemapPython
- python字串轉換為日期時間Python字串
- (譯)js中的神奇的型別轉換JS型別
- Python pytorch 座標系變換與維度轉換PythonPyTorch