python3print输出
python3中的输出
1. 直接print
print(‘123’,‘456’)
2. 带分隔符输出
print(‘12’,‘34’,‘56’,sep=’|+|’)
3. 输出到⽂件描述符
f=open(‘’,‘w’)
print(‘testtesttest’,file=f)
print(‘testtest’,file=sys.stdout) #默认的处理⽅式
4.print⽴即输出
print(‘test’,flush=‘true’)
5.修改输出的末尾字符
print(‘test’,end=’’) #以’‘号为结尾,默认是’\n’
python格式化输出format6.格式输出
print(‘name:%s,age:%d’%(‘name’,18))
print(‘name={name},age={age}’.format(name=‘test’,age=18))
print(‘name={0},age={1}’.format(‘test’,18))
format使⽤返回为字符串对象:
1、格式化整数和浮点数
a = 123456
print(format(a,‘20d’)) #保留20位长度左补空格站位,当需要保留的长度⽐数字长度⼩则直接返回原数字print(format(a,‘0>20d’)) #保留20位长度并左补0
print(format(a,‘0<20d’)) #保留20位长度并右补0
f = 2.34566788
print(format(f,‘0.2f’)) #保留两位⼩数并四舍五⼊,⼩数位不⾜则右补0
2、format函数
m = 3.1415926
print(format(m,’#>20.5’)) #左对齐并⽤#补位
print(format(m,’#<20.5’)) #右对齐并⽤#补位
print(format(m,’#^20.5’)) #中⼼对齐并⽤#补位
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论