Python3 datetime — 日期和时间处理
from datetime import datetime
# 获取当前日期和时间
now = datetime.now()
print("当前日期和时间:", now)
# 获取当前年份
year = now.year
print("年份:", year)
# 获取当前月份
month = now.month
print("月份:", month)
# 获取当前日期
day = now.day
print("日期:", day)
# 获取当前小时
hour = now.hour
print("小时:", hour)
# 获取当前分钟
minute = now.minute
print("分钟:", minute)
# 获取当前秒
second = now.second
print("秒:", second)
# 打印特定格式的日期和时间
formatted_datetime = now.strftime("%Y-%m-%d %H:%M:%S")
print("格式化日期和时间:", formatted_datetime)
# 解析字符串为日期时间
parsed_datetime = datetime.strptime("2023-03-25 15:30:00", "%Y-%m-%d %H:%M:%S")
print("解析的日期和时间:", parsed_datetime)
这段代码展示了如何使用Python的datetime
模块来获取当前的日期和时间,并进行格式化输出。同时,还展示了如何将特定格式的字符串解析为日期时间对象。
评论已关闭