Python獲取系統當前時間並格式化

2021-10-06 05:04:10 字數 1187 閱讀 7957

效果

# 獲取系統當前時間並轉換請求資料所需要的格式

defget_time

(format_str)

:# 獲取當前時間的時間戳

now =

int(time.time())

# 轉化為其他日期格式, 如 「%y-%m-%d %h:%m:%s」

timestruct = time.localtime(now)

strtime = time.strftime(format_str, timestruct)

return strtime

# 獲取年月日時分秒格式字串

defget_ymd_sms_time()

:return get_time(y_m_d_h_m_s)

# 獲取年月日時間格式字串

defget_ymd_time()

:return get_time(y_m_d)

# 獲取時分秒時間格式字串

defget_hms_time()

:return get_time(h_m_s)

print

("獲取系統當前時間並轉換請求資料所需要的格式: %s"

% get_time(

'%y-%m-%d %h:%m:%s'))

print

("獲取年月日時分秒格式字串: %s"

% get_ymd_sms_time())

print

("獲取年月日時間格式字串: %s"

% get_ymd_time())

print

("獲取時分秒時間格式字串: %s"

% get_hms_time(

))

Python獲取當前系統時間

python獲取當前系統時間 import time 返回當前時間 def getnowtime return time.strftime y m d h m s time.localtime time.time 擴充套件python中時間日期格式化符號 y 兩位數的年份表示 00 99 y 四位數...

python獲取當前系統時間

首先引入time包 import time然後獲取當前時間戳 time now time.time 將時間戳格式化為本地時間 time now time.locatetime time.time 將此格式再格式化為標準時間樣式 time now time.strftime y m d h m s t...

利用Python獲取系統當前時間

取得時間相關的資訊的話,要用到python time模組,python time模組裡面有很多非常好用的功能,你可以去官方文件了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在時間相隔的時間。你可以試下下面的方式來取得當前時間的時間戳 import time print...