Python 中的時間處理包datetime和arrow


Python 中的時間處理包datetime和arrow

 

在獲取貝殼分的時候用到了時間處理函數,想要獲取上個月時間包括年、月、日等

# 方法一:
today = datetime.date.today()  # 1. 獲取「今天」
first = today.replace(day=1)   # 2. 獲取當前月的第一天
last_month = first - datetime.timedelta(days=1)  # 3. 減一天,得到上個月的最后一天
print(last_month.strftime("%Y%m"))  # 4. 格式化成指定形式

# 方法二:
today = datetime.date.today()  # 1. 獲取「今天」
last_month = today.replace(month=today.month - 1)  # 2.獲取前一個月
print(last_month.strftime("%Y%m"))  # 3. 格式化成指定形式

# 方法三: arrow包的使用(pip install arrow)
a = arrow.now()  # 當前本地時間
print(a.timestamp)
print(a.year)
print(a.month)
print(a.day)
print(a.date())
print(a.time())
print(a.shift(months=-4).format("YYYYMM"))
print(a.shift(months=1).format("YYYYMM"))
print(a.shift(hours=1))

#  生成arrow對象
print(arrow.get(1535113845))
print(arrow.get(datetime.date(2018, 7, 24)))
print(arrow.get("2018-08-11 12:30:56"))

運行結果如下:

# 方法一
201906

# 方法二
201906

# 方法三
1562329178
2019
7
5
2019-07-05
20:19:38.573000
201903
201908
2019-07-05T21:19:38.573000+08:00
2018-08-24T12:30:45+00:00
2018-07-24T00:00:00+00:00
2018-08-11T12:30:56+00:00

所以想通過一個方法來兼容n種情況是極度困難的,內部實現也會非常復雜,作為用戶使用起來必然也很混亂,我們需要根據自己的業務場景選取最合適的包來進行處理。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM