概述
0. 引入模块
import datetime
1. 获取当前时间
now = datetime.datetime.now()
print(now)
today = datetime.date.today()
print('today={today}'.format(today=today))
2. 和字符串的相互转换
s = now.strftime("%Y-%m-%d %H:%M:%S")
print(s)
s = now.strftime("%Y-%m-%d")
print(s)
date = datetime.datetime.strptime(s, "%Y-%m-%d")
print(date, type(date))
3. 和timestamp相互转换
timestamp = time.time()
print(timestamp)
dt = datetime.datetime.fromtimestamp(timestamp)
print('dt=%s, type=%s' % (dt, type(dt)))
struct_time = dt.timetuple()
print(struct_time)
timestamp = time.mktime(struct_time)
print(timestamp)
s = time.strftime("%Y-%m-%d %H:%M:%S", struct_time)
print(s)
4. 日期之间的计算
start_date = datetime.date(2018, 1, 1)
end_date = datetime.date(2018, 3, 1)
delta_date = datetime.timedelta(days=1)
cur = start_date
while cur <= end_date:
weekday = cur.isoweekday()
if 1 <= weekday <= 5:
print(cur.strftime("%Y-%m-%d"))
cur += delta_date
最后
以上就是高兴楼房为你收集整理的Python模块datetime使用指南的全部内容,希望文章能够帮你解决Python模块datetime使用指南所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复