python format是什么
python中format主要是用来格式化字符串的。
format用法相对基本格式化输出采用‘%’的方法,format()功能更强大,该函数把字符串当成一个模板,通过传入的参数进行格式化,
并且使用大括号‘{}’作为特殊字符代替‘%’
使用方法由两种:b.format(a)和format(a,b)。
1、基本用法
(1)不带编号,即“{}”
(2)带数字编号,可调换顺序,即“{1}”、“{2}”
(3)带关键字,即“{a}”、“{tom}”
1>>>print('{}{}'.format('hello','world'))#不带字段
2helloworld
3>>>print('{0}{1}'.format('hello','world'))#带数字编号
4helloworld
5>>>print('{0}{1}{0}'.format('hello','world'))#打乱顺序
6helloworldhello
7>>>print('{1}{1}{0}'.format('hello','world'))
2、进阶用法
(1)右对齐、^中间对齐、=(只用于数字)在小数点后进行补齐
(2)取位数“{:4s}”、"{:.2f}"等
1>>>print('{}and{}'.format('hello','world'))#默认左对齐
2helloandworld
3>>>print('{:10s}and{:>10s}'.format('hello','world'))#取10位左对齐,取10位右对齐
4helloandworld
5>>>print('{:^10s}and{:^10s}'.format('hello','world'))#取10位中间对齐
6helloandworld
7>>>print('{}is{:.2f}'.format(1.123,1.123))#取2位小数
81.123is1.12
9>>>print('{0}is{0:>10.2f}'.format(1.123))#取2位小数,右对齐,取10位
101.123is1.12
以上内容为大家介绍了python培训之format是什么,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:开发教育。
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!