Python之{0:9}占位符

# -*- coding: utf-8 -*-

print("celery 定时任务执行成功,执行结果:{:0>2}:{:0>2}".format(1, 2))

print("{:9}:{}".format(1, 2, 3, 4))

print("{0:0>5}".format(10, 20, 30, 40))

celery 定时任务执行成功,执行结果:01:02
         1:2
00010

你可能感兴趣的:(Python)