📅  最后修改于: 2023-12-03 15:34:13.857000             🧑  作者: Mango
在Python中,可以使用print()函数来输出文本。
print(object(s), sep=separator, end=end, file=file, flush=flush)
参数说明:
下面是一些关于Python输出文本的实例:
# 输出字符串
print('Hello, world!')
# 输出数字
print(100)
print(3.1415926)
# 输出计算结果
print(1 + 2)
print(3 * 4)
# 输出到文件
f = open('output.txt', 'w')
print('Hello, world!', file=f)
f.close()
# 使用sep分隔符
print('apple', 'banana', 'orange', sep=',')
# 使用end结束符
print('Hello', end='')
print('World')
输出结果:
Hello, world!
100
3.1415926
3
12
apple,banana,orange
HelloWorld
以上就是Python输出文本的简单介绍。通过print()函数,可以很方便地输出文本。