脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 聊聊Python中end=和sep=的区别

聊聊Python中end=和sep=的区别

2021-11-03 10:00何必诗债讨酒钱 Python

这篇文章主要介绍了Python中end=和sep=的区别说明,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

end: 默认是换行,表示两个字符串最后以什么结尾。

eg: 换行 end="\n"

sep: 默认是空格,表示两个字符串之间用什么分割。

eg: 空格 sep=" "

聊聊Python中end=和sep=的区别

补充:python 中的 print(x, end=) 和 print(x, sep=)

?
1
2
3
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 = "\n"

?
1
print(x, sep=)

sep 用于做打印拼接

?
1
print("hello", "world", sep=":")

打印结果:

hello:world

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/weixin_44675380/article/details/87967032

延伸 · 阅读

精彩推荐