博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 几种不同的格式化输出
阅读量:6099 次
发布时间:2019-06-20

本文共 528 字,大约阅读时间需要 1 分钟。

1. %

%是最常用的格式化输出形式,后面接类型,%s,%d,%c等等

name = input()print('I am %s' % name)

 

2.format

format也是常用格式化输出

print('i am {}, {}years old,{}kg'.format('pis',20,55)) print('i am {name}, {age}years old,{weight}kg'.format(name='pis',age=20,weight=55))

{xx}里面可以填key值,format中对应填写,如果不填就是按顺序一一配对。

 

3.dict

a = {
'd':123, 'c':456}print('i am %(d)s,%(c)syears old' % a)#i am 123,456years old

 

4.repr

name = 'pis'print('Item({})'.format(name))print('Item({!r})'.format(name))# Item(pis)# Item('pis')

 

 

转载于:https://www.cnblogs.com/MY0213/p/7930515.html

你可能感兴趣的文章
表闪回
查看>>
jQuery插件 -- Cookie插件jquery.cookie.js(转)
查看>>
常见EMC疑问及对策
查看>>
About Me
查看>>
BZOJ4756:[USACO]Promotion Counting(线段树合并)
查看>>
内部类、代码块
查看>>
软件工程第二章 习题2 第5题
查看>>
残缺的字符串【FFT】
查看>>
ZZULIOJ 1917: E
查看>>
南阳oj 题目2—括号配对问题
查看>>
C/C++的const区别
查看>>
定位Java运行时 代码段方法
查看>>
Eclipse 编译错误 Access restriction:The type *** is not accessible due to restriction on... 解决方案...
查看>>
python第三方库汇总
查看>>
matplotlib可视化_常用图
查看>>
TypeScript 额外的属性检测
查看>>
构建自己的GAFATA
查看>>
视频地址blog加密
查看>>
iOS 开发使用 Jenkins 搭建 CI 服务器
查看>>
Linux内核-内存回收逻辑和算法(LRU)
查看>>