python format()函数的用法
format()函数是Python字符串对象的一个方法,用于将一组值格式化为一个字符串。它可以使用大括号 {} 作为占位符来指示需要替换的值,并控制输出字符串的格式。
下面是format()函数的基本用法:
- 使用位置参数进行替换:
"Hello, {}!".format("World") # 输出:'Hello, World!'
- 使用关键字参数进行替换:
"{name} is {age} years old.".format(name="John", age=25) # 输出:'John is 25 years old.'
- 格式化数字:
"The value of pi is approximately {:.2f}".format(3.14159) # 输出:'The value of pi is approximately 3.14'
- 控制对齐、填充和宽度:
"|{:10}|".format("Hello") # 输出:'|Hello |' "|{:<10}|".format("left") # 输出:'|left |' "|{:>10}|".format("right") # 输出:'| right|' "|{:^10}|".format("center") # 输出:'| center |' "|{:_<10}|".format("fill") # 输出:'|fill______|' "|{:^10.2f}|".format(3.14159) # 输出:'| 3.14 |'
更多format()
函数的用法,请参考 Python 官方文档。
为你推荐