博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python3之format
阅读量:5278 次
发布时间:2019-06-14

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

print('{0},{1}'.format('zhangk', 32))print('{},{},{}'.format('zhangk','boy',32))print('{name},{sex},{age}'.format(age=32,sex='male',name='zhangk'))# 格式限定符# 它有着丰富的的“格式限定符”(语法是{}中带:号),比如:# 填充与对齐# 填充常跟对齐一起使用# ^、<、>分别是居中、左对齐、右对齐,后面带宽度# :号后面带填充的字符,只能是一个字符,不指定的话默认是用空格填充print('{:>8}'.format('zhang'))print('{:0>8}'.format('zhang'))print('{:a<8}'.format('zhang'))print('{:p^10}'.format('zhang'))# 精度与类型f# 精度常跟类型f一起使用print('{:.2f}'.format(31.31412))# 其他类型# 主要就是进制了,b、d、o、x分别是二进制、十进制、八进制、十六进制print('{:b}'.format(15))print('{:d}'.format(15))print('{:o}'.format(15))print('{:x}'.format(15))# 用逗号还能用来做金额的千位分隔符print('{:,}'.format(123456789))

  

转载于:https://www.cnblogs.com/eternal1025/p/5227997.html

你可能感兴趣的文章
elementUI 表格设置表头样式
查看>>
ios公司开发者账号申请分享攻略
查看>>
cat 命令详解
查看>>
CSS()
查看>>
JDK 环境变量的设置、eclipse、Tomcat的配置
查看>>
Exploring the world of Android :: Part 2
查看>>
【机器学习】粗糙集(Rough Set Approach)
查看>>
HDOJ并查集题目 HDOJ 1213 HDOJ 1242
查看>>
PHP 文件下载流程
查看>>
第十二次作业——朴素贝叶斯应用:垃圾邮件分类
查看>>
【HDU1711】Number Sequence
查看>>
【CF248E】Piglet's Birthday(动态规划)
查看>>
CKEditor的API查看
查看>>
window.open()和window.showModalDialog中参数传递
查看>>
属性readwrite,readonly,assign,retain,copy,nonatomic
查看>>
Aerospike系列:2:商业版和社区版的比较
查看>>
设计模式- 观察者模式
查看>>
angular
查看>>
[转]Magento Configurable Product
查看>>
HDU 1875(最小生成树)
查看>>