字符串格式化与.format()
Posted aluosen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串格式化与.format()相关的知识,希望对你有一定的参考价值。
import time
scale=10
print(":-^18".format("执行开始"))
for i in range(scale+1):
a="*"*i
b="."*scale
scale -= 1
c=i*scale
print(‘:^3%[->]‘.format(c,a,b))
time.sleep(0.01)
print(":-^18".format("执行结束"))
以上是关于字符串格式化与.format()的主要内容,如果未能解决你的问题,请参考以下文章