如果我只是想在python中打印换行符,那么使用print('')
,print('\n', end = '')
或其他内容是否更好呢?
print('\n', end = '')
似乎过于复杂,而print('')
感觉有些奇怪。
答案 0 :(得分:0)
使用 Python3 ,如果您只需要打印换行符,那么您可以使用:
print()
查看print()
的文档,它显示默认的end
字符为'\n'
。
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.
Type: builtin_function_or_method