時間是線性的重「2023年1月1日00:00:00」,以毫秒(1/1000秒)進行計算,2023年這個時刻稱為「unix時間點」,時間點之前位負數,之後為正數
>>> import time 匯入時間模組
>>> time.time()
1557444675.3145125 秒.微妙 從2023年到現在的時間
>>>
>>> b=int(time.time())
>>> totalminutes = b/60
>>> totalminutes
25957412.683333334
>>> totalminutes = b//60
>>> totalminutes
25957412
>>> totalhours = totalminutes//60
>>> totalhours
432623
>>> totaldays = totalhours//24
>>> totaldays
18025
>>> totalyears = totaldays//365
>>> totalyears
49>>>
Python 內建資料型別
1 字串 string 1 str this is string print str print type str 2 str 想怎麼些就怎麼些 怎麼的 print str print type str 注意 單引號 雙引號均可,使用三個引號,其內容可以自由書寫 2 布林型別 bool bool f...
python內建資料型別 數字
型別 子型別示例 相關模組 數字整數 2 100 2的100次方 import math import random 浮點數複數等 小數物件 表現固定精度的特性 例如 頭寸的合計 以及實現更好的數字精度是乙個理想的工具 0.1 0.1 0.1 0.3 5.551115123125783e 17 fr...
Python 內建資料型別(二)
一 字串 不可改變物件 1 定義 有序的字元的集合,用單引號或者雙引號表示,支援索引,切片 就是編號,通過這個編號就能找到相應的儲存空間。正數從左到右,負數從右到左。切片 sx sx 3 sx 2 sx 0 4 2 是指對操作物件擷取其中的一部分 語法 起始 結束 步長 注意 選取的區間屬於左閉右開...