在這裡,我們呼叫的模組是——datetime。
ps:注意大小字母
import datetime # 呼叫日期模組datetime
# 兩種輸出方法
# 輸出當前年份
print(+
str(datetime.datetime.now(
).year)
+'-'
+str
(datetime.datetime.now(
).month)
+'-'
+str
(datetime.datetime.now(
).day)
+' '
+str
(datetime.datetime.now(
).hour)
+':'
+str
(datetime.datetime.now(
).minute)
+':'
+str
(datetime.datetime.now(
).second)
)# 輸出當前日期和時間
print
(+ datetime.datetime.now(
).strftime(
'%y-%m-%d %h:%m:%s'
))
哪種方式更方便快捷,大家應該知道了。 Python獲取並輸出當前日期時間
python獲取並輸出當前日期時間 取得時間相關的資訊的話,要用到python time模組,python time模組裡面有很多非常好用的功能,你可以去官方 文件了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在時間相隔的時間。你可以試下下面的方式來取得當前時間的時間...
Python獲取並輸出當前日期時間
取得時間相關的資訊的話,要用到python time模組,python time模組裡面有很多非常好用的功能,你可以去官方 文件了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在時間相隔的時間。你可以試下下面的方式來取得當前時間的時間戳 import time prin...
Python獲取並輸出當前日期時間
123 4567 取得當前時間戳 import time print time.time 格式化時間戳為標準格式 print time.strftime y.m.d time.localtime time.time 獲取30天前的時間 通過加減秒數來獲取現在或者未來某個時間點 print time....