python怎么用一个print换行输出多个变量

Posted 命数如织 当为磐石

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python怎么用一个print换行输出多个变量相关的知识,希望对你有一定的参考价值。

1.用链表加循环的方式

n=123
f=456.456
s1=‘Hello,world‘
s2=‘Hello,\‘lihua\‘‘
s3=r‘hello,"Bart"‘
s4=r‘‘‘hello
Lisa!‘‘‘
L=[n,f,s1,s2,s3,s4]
for M in L:
    print(M)

 2.用sep=‘\n‘

n=123
f=456.456
s1=‘Hello,world‘
s2=‘Hello,\‘lihua\‘‘
s3=r‘hello,"Bart"‘
s4=r‘‘‘hello
Lisa!‘‘‘
print(n,f,s1,s2,s3,s4,sep=‘\n‘)

  

 

以上是关于python怎么用一个print换行输出多个变量的主要内容,如果未能解决你的问题,请参考以下文章

python的print输出多个变量

python如何输出换行

python中print怎么输出变量

python的print命令

python中print()有啥用?

a=1 b=2 c=3用python怎么输出1,2,3