在Python中,我們可以使用datetime模塊提取年月份。以下是一些示例代碼:
import datetime # 獲取當前日期和時間 now = datetime.datetime.now() # 提取年份 year = now.year # 提取月份 month = now.month print("當前年份是:", year) print("當前月份是:", month)
以上代碼將輸出當前的年份和月份。如果你想提取指定日期的年月份,可以使用datetime.datetime(year, month, day)函數。
另外,如果你想要將年月份格式化為字符串,可以使用strftime函數。
# 格式化年份和月份為字符串 year_str = now.strftime("%Y") month_str = now.strftime("%m") print("當前年份格式化后的字符串是:", year_str) print("當前月份格式化后的字符串是:", month_str)
以上代碼將輸出當前的年份和月份的字符串,其中"%Y"表示四位數的年份,"%m"表示兩位數的月份。
上一篇python 提取年月日
下一篇vue bus性能