print输出字符串变量
时间: 2023-12-30 10:04:02 浏览: 87
Python Print实现在输出中插入变量的例子
5星 · 资源好评率100%
当我们需要在Python中输出字符串变量时,可以使用print函数。例如:
```python
str = 'Hello, World!'
print(str)
```
输出结果为:
```
Hello, World!
```
如果需要在输出的字符串中加入其他变量,可以使用字符串的格式化输出。例如:
```python
name = 'Alice'
age = 25
print("My name is %s and I'm %d years old." % (name,))
```
输出结果为:
```
My name is Alice and I'm 25 years old.
```
其中,`%s`表示字符串类型的变量,`%d`表示整型变量。在输出时,需要在字符串中使用`%`符号来表示变量的位置,并在字符串末尾使用`%`符号和一个元组来表示变量的值。
阅读全文