datatime模組練習

2021-10-06 03:18:15 字數 716 閱讀 9284

使用兩種方法獲得當前日期時間,並輸出到控制台

在控制台上分別對日期和時間進行輸出

使用-拼接年月日得到當前日期

使用format格式化輸出得到的當前年份、當前月份、當前日,並用「-」進行連線

from datetime import datetime

# 得到當前日期時間(兩種方法)

print(datetime.now())

print(datetime.today())

# 得到當前日期

print(datetime.now().date())

# 得到當前時間

print(datetime.now().time())

# 得到當前年份用year_變數接收

year_ = datetime.now().date().year

# print(year_)

# 得到當前月份用month_變數接收

month_ = datetime.now().date().month

# print(month_)

# 得到當前天用day_變數接收

day_ = datetime.now().date().day

# print(day_)

# 使用-拼接年月日得到當前日期

print("{}-{}-{}".format(year_,month_,day_))

Python基礎 datatime模組

datetime類 如何建立乙個dayetime物件 如何將datetime物件轉換為任何格式的日期?import datetime dt datetime.datetime year 2020 month 6,day 25,hour 11,minute 51,second 49 s dt.strf...

Python標準庫 datatime模組

相比time模組,datetime提供了更加豐富的對時間日期處理的工具。在datetime模組中,提供了如下四個常用的類 datetime.time hour minute second microsecond tzinfo max 最大的時間表示數值 datetime.time.max datet...

datatime時間管理模組

當前時間 及 格式化時間 使用time模組 2018 01 17 22 03 04,字串型別 time.strftime y m d h m s 使用datetime模組 包含小數點 和 格式化去掉小數點 同時 時間型別 字串型別 datetime.datetime.now 2018 01 17 2...