Python3 日期和时间
在Python中,日期和时间可以使用内置的datetime
模块来处理。以下是一些常用的操作和示例代码:
- 获取当前日期和时间:
from datetime import datetime
now = datetime.now()
print("现在的日期和时间:", now)
- 格式化日期和时间:
formatted_now = now.strftime("%Y-%m-%d %H:%M:%S")
print("格式化后的日期和时间:", formatted_now)
- 日期时间的加减:
# 加上一天
next_day = now + timedelta(days=1)
print("明天的日期和时间:", next_day)
# 减去一小时
previous_hour = now - timedelta(hours=1)
print("一个小时前的时间:", previous_hour)
- 解析字符串为日期时间:
datestring = "2023-03-25 10:00:00"
parsed_date = datetime.strptime(datestring, "%Y-%m-%d %H:%M:%S")
print("解析后的日期和时间:", parsed_date)
确保你的环境中已经安装了Python,并且你正在使用Python 3.x版本。上述代码可以直接复制粘贴到Python文件中运行。
评论已关闭