Python 一次性多行打印多个变量
Posted 眉间雪y
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 一次性多行打印多个变量相关的知识,希望对你有一定的参考价值。
>>> n = 123
>>> f = 456.789
>>> s1 = \'hello ,world\'
>>> s2 = \'hello, \\\'adam\\\'\'
>>> s3 = r\'hello, "bart"\'
>>> s4 = r\'\'\'hello,
lisa!\'\'\'
>>> print(n,f,s1,s2,s3,s4,sep=\'\\n\')
123
456.789
hello ,world
hello, \'adam\'
hello, "bart"
hello,
lisa!
以上是关于Python 一次性多行打印多个变量的主要内容,如果未能解决你的问题,请参考以下文章