- 字符串的格式化输出
python基础_格式化输出(%用法和format用法)
https://www.cnblogs.com/fat39/p/7159881.html#tag1
%使用更方便
format()功能更强大
其中:%和{}均可理解为占位符
%基本格式为:
print("字符串 %format1 字符串 %format2...字符串" % (变量或值1,变量或值2.……))
如:
>>>print("字符串1 %d 字符串2 %s 字符串3" %(99,"ddd"))
字符串1 99 字符串2 ddd 字符串3
format基本格式为:
print(字符串1 {} 字符串2 {}……字符串3.format(变量或值1,变量或值2.……))
如:
>>>print("字符串1 {} 字符串2 {} 字符串3".format("hello","world"))
字符串1 hello 字符串2 world 字符串3