Python中format函数的使用方法
时间: 2024-03-28 15:13:20 浏览: 49
python中format函数如何使用
5星 · 资源好评率100%
Python中的format函数可以用于格式化字符串输出,它的使用方法如下:
1. 使用{}作为占位符,将需要替换的变量或字符串放在{}中。
2. 如果需要在字符串中插入花括号字符,可以使用两个花括号来表示。
3. 可以通过位置参数或关键字参数来指定替换的值。
4. 可以在{}中使用格式化说明符来指定输出的格式,如填充字符、对齐方式、精度等。
举个例子:
```
# 使用位置参数
name = 'Tom'
age = 18
print('My name is {}, I am {} years old.'.format(name, age))
# 使用关键字参数
print('My name is {name}, I am {age} years old.'.format(age=18, name='Tom'))
# 使用格式化说明符
num = 3.1415926
print('The value of pi is {:.2f}'.format(num)) # 输出结果为 3.14
```
更多关于format函数的用法,可以参考Python官方文档:https://docs.python.org/3/library/string.html#format-string-syntax
阅读全文