python 怎么打印变量
时间: 2024-09-12 17:16:21 浏览: 50
在Python中,打印变量通常是通过内置函数`print()`来完成的。这个函数接受一个或多个值作为参数,并将它们转换为字符串形式然后显示在屏幕上。下面是一些基本的例子:
```python
# 基础的打印
x = 5
print(x) # 输出:5
# 打印多个变量
y = "Hello"
print(x, y) # 输出:5 Hello
# 使用f-string格式化输出
age = 20
print(f"My age is {age}.") # 输出:My age is 20.
# 列表、元组和字典的打印
numbers = [1, 2, 3, 4, 5]
print(numbers) # 输出:[1, 2, 3, 4, 5]
person = {"name": "Alice", "age": 30}
print(person) # 输出:{'name': 'Alice', 'age': 30}
# 也可以使用%运算符或format()方法进行格式化
color = "red"
size = "small"
print("The shirt color is %s and size is %s." % (color, size)) # 输出:The shirt color is red and size is small.
```
阅读全文