python中.format
时间: 2024-03-01 16:30:11 浏览: 89
Python中str.format()详解
string.format是Python中的字符串格式化方法,它可以将一个字符串中的占位符替换为指定的值。使用方法如下:
1. 在字符串中使用占位符{}表示需要替换的位置。
2. 在字符串后面调用.format()方法,并将需要替换的值作为参数传入。
例如:
name = "Tom"
age = 18
print("My name is {}, and I am {} years old.".format(name, age))
输出结果为:
My name is Tom, and I am 18 years old.
阅读全文