sys.ar**() 在python指令碼傳參使用
sys.exit() 系統退出
sys.getdefaultencoding() 獲取系統預設編碼
getfilesystemencoding() 獲取檔案編碼
getrecursionlimit() 獲取系統預設遞迴的最大層數
setrecursionlimit(num) 設定遞迴的最大層數
getrefcount() 獲取物件的引用計數的數量
asctime() # 獲取系統當前時間
ctime() # 獲取系統當前時間
time() # 獲取當前的時間戳
localtime() # 返回當前時間,以類似於元組的物件
t = time.localtime()
print(「當前時間是%s-%s-%s %s:%s:%s」 %(t.tm_year, t.tm_mon, t.tm_mday, t.tm_hour, t.tm_min, t.tm_sec))
time.strftime() # 將時間物件格式化成字串
time.strftime("%y-%m-%d %h:%m:%s", time.localtime())
time.strptime() # 時間字串轉換為時間物件
time.strptime(『2019/09/18 21:02:44』, 「%y/%m/%d %h:%m:%s」)
時間戳(timestamp) :通常來說,時間戳表示的是從2023年1月1日00:00:00開始按秒計算的偏移量。我們執行「type(time.time())」,返回的是float型別。
格式化的時間字串
元組(struct_time) :struct_time元組共有9個元素共九個元素:(年,月,日,時,分,秒,一年中第幾周,一年中第幾天,夏令時)
論python常見內建模組
論python常見內建模組 1.系統的內建模組 syshashlib hmac sys模組 sys.ar 在python指令碼傳參使用 sys.exit 系統退出 sys.getdefaultencoding 獲取系統預設編碼 getfilesystemencoding 獲取檔案編碼 getrecu...
論python常見內建模組
sys hashlib hmac base64 time datetime 1 sys模組 sys.ar 在python指令碼傳參使用 非常重要 sys.exit 系統退出 sys.getdefaultencoding 獲取系統預設編碼 getfilesystemencoding 獲取檔案編碼 ge...
論Python常見的內建模組
sys hashlib hmac base64 time datetime sys.ar 在python指令碼傳參使用 sys.exit 系統退出 sys.getdefaultencoding 獲取系統預設編碼 getfilesystemencoding 獲取檔案編碼 getrecursionlim...