python中格式化输出格式
时间: 2023-03-30 17:02:39 浏览: 118
Python中格式化输出可以使用字符串的format()方法,语法如下:
```
print("格式化字符串".format(变量1, 变量2, ...))
```
其中,格式化字符串中可以使用占位符{}来表示需要填充的变量,变量可以通过format()方法的参数传入。例如:
```
name = "小明"
age = 18
print("我叫{},今年{}岁。".format(name, age))
```
输出结果为:
```
我叫小明,今年18岁。
```
阅读全文