在 Python 中打印多个空行
Print multiple blank lines in Python
使用乘法运算符打印多个空行,例如
print('\n' * 3)
. 当乘法运算符与字符串和整数一起使用时,它会将字符串重复指定的次数。
主程序
print('before') print('\n' * 3) print('after') # before # after
我们使用乘法运算符来打印多个空行。
当乘法运算符与字符串和整数一起使用时,它会将字符串重复指定的次数。
主程序
print('a' * 2) # 👉️ 'aa' print('a' * 3) # 👉️ 'aaa'
该\n
字符代表 Python 中的新行。
但是,请注意该函数会在每条消息的末尾print()
添加一个换行符 ( )。\n
主程序
# 👇️ adds newline character automatically print('a', 'b', 'c') # 👉️ 'a b c\n' # 👇️ set `end` to empty string to remove newline character print('a', 'b', 'c', end='') # 👉️ 'a b c'
该end
参数打印在消息的末尾。
默认情况下,end
设置为换行符 ( \n
)。
如果您需要删除函数默认添加的换行符,请将关键字参数设置\n
为空字符串。print()
end
主程序
print('before', end='') print('\n' * 3) print('after', end='') # before # after
当end
关键字参数设置为空字符串时,不会在消息末尾添加换行符。