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‘)