python print 所有用法
时间: 2023-05-23 07:01:10 浏览: 102
Python中的print能够把想要输出的信息打印到控制台中。以下是一些使用print的例子:
1. 将字符串打印到控制台上:
print("Hello, world!")
2. 可以打印多个变量,使用逗号进行分割:
x = 1
y = 2
print("x is", x, "and y is", y)
3. 使用end关键字指定结束时要用的字符(默认是换行符)。
for i in range(5):
print(i, end=" ")
4. 将输出重定向到文件中,使用文件对象就可以了。
with open('output.txt', 'w') as f:
print('Hello, world!', file=f)
相关问题
python中的print函数用法
在Python中,print函数用于输出结果到控制台或者文件中。常用的用法有:
1. 输出字符串
```python
print("Hello, world!")
```
2. 输出变量
```python
x = 42
print(x)
```
3. 格式化输出
```python
name = "Alice"
age = 25
print("My name is {} and I am {} years old.".format(name, age))
```
4. 输出多个参数
```python
print("one", "two", "three")
```
5. 换行输出
```python
print("Hello,\nworld!")
```
6. 不换行输出
```python
print("Hello,", end="")
print("world!")
```
以上是常用的print函数用法,更多用法可以查看Python官方文档。
阅读全文