python中输出变量
时间: 2023-09-28 08:05:22 浏览: 233
Python中的变量
在 Python 中输出变量,可以使用 `print` 函数。例如:
```python
x = 10
print(x) # 输出10
```
也可以在 `print` 函数中使用占位符 `%s` 来输出字符串格式的变量。例如:
```python
name = "Tom"
print("My name is %s" % name) # 输出"My name is Tom"
```
还可以使用 f-string 格式化字符串。例如:
```python
age = 25
print(f"I am {age} years old") # 输出"I am 25 years old"
```
阅读全文