python中的print(x, end=)和print(x, sep=)
Posted jeavy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的print(x, end=)和print(x, sep=)相关的知识,希望对你有一定的参考价值。
print(x, end=)
for i in range(10): print(i)
输出结果:
0
1
2
3
4
5
6
7
8
9
for i in range(10): print(i, end=" ")
输出结果:
0 1 2 3 4 5 6 7 8 9
参数end默认打印换行,即end = “ ”
print(x, sep=)
sep用于做打印拼接
print("hello", "world", sep=":")
打印结果:
hello:world
以上是关于python中的print(x, end=)和print(x, sep=)的主要内容,如果未能解决你的问题,请参考以下文章