📅  最后修改于: 2023-12-03 14:54:28.146000             🧑  作者: Mango
在 Python 中,我们可以使用 print() 函数来打印字符串。
print(object(s), sep=separator, end=end, file=file, flush=flush)
参数说明:
# 打印一个简单的字符串
print('Hello, world!')
# 打印多个对象,并使用分隔符
print('apple', 'banana', 'orange', sep=', ')
# 使用 end 参数来避免换行
print('Hello,', end=' ')
print('world!')
# 将打印结果保存到文件中
with open('output.txt', 'w') as f:
print('This is some output', file=f)
# 立即刷新缓冲区
print('This will be immediately flushed', flush=True)
输出结果:
Hello, world!
apple, banana, orange
Hello, world!
This will be immediately flushed