Pythonformat
时间: 2024-05-18 15:09:49 浏览: 89
python中format使用
Python中的格式化字符串是一种方便的方式,可以将变量值插入到字符串中。format()函数是Python中用来实现格式化字符串的方法。通过format()函数,可以用参数替换字符串中的字段,从而生成一个新的字符串。
语法格式为:'{}'.format(value)
其中,大括号{}表示一个字段,format()函数会将大括号{}中的值替换成传入函数的参数。
例如:
```
name = 'Jack'
age = 28
print('My name is {}, and I am {} years old.'.format(name, age))
```
输出结果为:
```
My name is Jack, and I am 28 years old.
```
同时,format()函数还支持对输出结果进行格式化,例如:
```
pi = 3.1415926
print('The value of pi is {:.2f}'.format(pi))
```
输出结果为:
```
The value of pi is 3.14
```
阅读全文