基本格式
import datetime
today=datetime.date.today(
)#現在年月日
today.year
out[7]
:2020
today.day
out[8]
:4birthdate=datetime.date(
2010,3
,12)#指定時間的年月日
t=datetime.time(15,
46,32)
#定義時分秒
now=datetime.datetime.now() #現在的全部的時間 年月日時分秒
字串和時間轉化
import datetime
s='2018-3-15'
t=datetime.datetime.strptime(s,
'%y-%m-%d'
)#字串轉化時間 字串定義位置,年月日,第乙個字元大寫,-和字串的-相對於
t=s.strftime(「%y%m%d」)
#時間轉字串
時間差處理
a=datetime.datetime(
2018,4
,12,3
,12)b=datetime.datetime(
2016,4
,23,1
,23,34
)diff=a-b
diff
out[21]
: datetime.timedelta(days=
719, seconds=
6506
)c=datetime.timedelta(days=
100)
a+c #時間相加,相減,可指定天數,年份。。。
out[23]
: datetime.datetime(
2018,7
,21,3
,12)
datatime時間管理模組
當前時間 及 格式化時間 使用time模組 2018 01 17 22 03 04,字串型別 time.strftime y m d h m s 使用datetime模組 包含小數點 和 格式化去掉小數點 同時 時間型別 字串型別 datetime.datetime.now 2018 01 17 2...
時間日期類
問題及 檔名稱 test.cpp 完成日期 2015年05月27日 版本號 v1.0 定義乙個日期類date,資料成員包括年 月 日,setdate int y,int m,int d 和printdate 函式分別用於設定日期和顯示日期 再定義乙個時間類time,資料成員包括時 分 秒,setti...
時間,日期 datetime time
coding utf 8 1.時間 日期 datetime 日期 import datetime today datetime.datetime.now print today 2.from 模組 import 類 函式 從datetime模組中 引入datetime這個類,這類中有一些函式可以使用...