其他分享
首页 > 其他分享> > 7段数码管绘制 画出系统时间。具体包括:年,月,日,小时。

7段数码管绘制 画出系统时间。具体包括:年,月,日,小时。

作者:互联网

画出系统时间。具体包括:年,月,日,小时。

import time
import datetime
t1 = time.strftime("%Y/%m/%d/%H/")
b = datetime.datetime.strptime(f'{t1}','%Y/%m/%d/%H/')
t = b.strftime('%Y{}%m{}%d{}%H{}').format('年','月','日','时')
print(t)

 

标签:画出,datetime,数码管,time,import,t1,绘制,strftime
来源: https://www.cnblogs.com/2479308859qq/p/15450586.html