print函数是我们经常使用的,但是它的sep和end参数或许对很多python使用者相对陌生,他们可以让我们的打印更具有个性化。
先来看下官方解释,
sep:分割值与值,默认是一个空格
end:附件到最后一个值,默认是一个新行
下面定制我们需要的打印:#分割值,打印最后是@@加一个空行
print("I'm a tester.","hello python","good",sep='#',end='@@\n')print('---------------')print("I'm a tester.","hello python\n","good",sep='#',end='@@\n')
输出结果:
I'm a tester.#hello python#good@@
---------------
I'm a tester.#hello python#good@@