字符串格式化与.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()的主要内容,如果未能解决你的问题,请参考以下文章

python中字符串格式化%与.format

python中字符串格式化%与.format

format 填充符号 与 格式化

关于字符串的格式化----format与%

% 与 format 进行字符串格式化

python format字符串格式化数学意义的函数与python中的函数 day14