在 python 中实现换行有两种方法:使用’n’ 字符序列或使用 ‘print()’ 函数的 ‘end’ 参数。前者在字符串中插入换行符,后者允许指定不同的分隔符。例如,print(“hello”, “world”, sep=” “, end=”n”) 输出”hello world”;print(“hello”, “world”, end=”rn”) 在 windows 系统上实现回车和换行。
Python 中的换行
在 Python 中,执行换行有两种主要方法:
1. 使用 ‘n’ 字符序列
这是在字符串中插入换行符的最简单方法。例如:
print("HellonWorld")
登录后复制
这将在控制台中输出:
Hello World
登录后复制
2. 使用 ‘print()’ 函数的 ‘end’ 参数
‘print()’ 函数允许指定要附加到输出末尾的换行符类型。默认情况下,它会附加一个 newline 字符 ‘n’。但是,您可以使用 ‘end’ 参数指定不同的分隔符。例如:
print("Hello", "World", sep=" ", end="n")
登录后复制
这将输出:
Hello World
登录后复制
注意:在 ‘end’ 参数中,您还可以使用 ‘rn’ 字符序列来在 Windows 系统上实现回车和换行。
以上就是python中怎么换行的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:走不完的路,转转请注明出处:https://www.dingdanghao.com/article/489347.html