1、数字格式化 format
< :左对齐
> :右对齐
a = “随机数是{:>4d}”.format(1) 结果是0001
2、当前时间
import datetime now = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')