码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-05-28 22:01:58      阅读:424      评论:0      收藏:0      [点我收藏+]

标签:font   lis   输出   world   多个   for   highlight   style   div   

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换行输出多个变量

标签:font   lis   输出   world   多个   for   highlight   style   div   

原文地址:https://www.cnblogs.com/Zhuohome/p/12983768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!