Python的字符串格式化,%与format

1. '%'字符串格式化

#方法一: '%'
num = 10
print('--the number is %d--'%num) #output: "--the number is 10--"

print('the float number is %f'%-3.14) #output: "the float number is -3.140000",自动格式

print('the float number is %6.3f'%-3.14) #output: "the float number is -3.140"
#此时6.3的6表示宽度(包括正负号和小数点),3表示精度(也就是小数点位数,浮点型时)

print('the float number is %-9.3d'%-3) #output: "the float number is -003     "
#此时-9.3d,d表示整型,此时3表示显示的数字宽度,不足的补零,9表示整个字符宽度,不足的补空格

print('the float number is %09.3f'%-3.14) #output: "the float number is -0003.140"
#浮点型,此时09.3表示精度为3位,宽度为9,不足的在前面补零

print('the float number is %-9.3f'%-3.14) #output: "the float number is -3.140   "
#此时-9.3表示精度为3位,宽度为9,不足的在后面补空格(因为没有指定补零),最前面的负号'-'表示左对齐

2. format字符串格式化:主要是通过 {} 和 : 来代替上面的 %,结果返回格式化后的字符串 。

#方法二: format
print("what is your {}: {}!".format('name','Jack')) # output: "what is your name: Jack!"
#依次对应前面的括号,当括号内没有值时

print('what is your {flag}?--- {1},and {0}? ---{myname}'.format(flag='name','you','Bob',myname='Lily'))
# SyntaxError: positional argument follows keyword argument,遵守python的参数赋值顺序,关键字参数应该在后面

print('what is your {flag}?--- {1},and {0}? ---{myname}'.format('you','Bob',flag='name',myname='Lily'))
#output: "what is your name?--- Bob,and you? ---Lily",遵守python赋值顺序

print('what is your {flag}?--- {1},and {0}? ---{myname}'.format('you','Bob','name','Lily'))
# KeyError: 'flag',因为前面的格式写了'flag',但是后面没有找到

print('what is your {2}?--- {1},and {0}? ---{3}'.format('you','Bob','name','Lily'))
#output: "what is your name?--- Bob,and you? ---Lily",以format中元组的索引赋值

print('what is your {1[0]}--- {0[1]},and {0[0]} ---{1[1]}'.format(('you','Bob'),('name','Lily')))
#output: "what is your name--- Bob,and you ---Lily",元组嵌套元组的索引赋值

3. format带精度,对齐,补足位,冒号':' 后面是格式,结果返回字符串

## ^、<、>分别是居中对齐、左对齐、右对齐

print('{0}+{1}={2:$>6}'.format(2.4,3.1,5.5)) 
#"2.4+3.1=$$$5.5",>表示右对齐,6位宽度,$用于补足空位

print('{0}+{1}={2:$^6}'.format(2.4,3.1,5.5))
#"2.4+3.1=$5.5$$",^表示居中对齐

print('{0}+{1}={2:$<6}'.format(2.4,3.1,5.5))
#"2.4+3.1=5.5$$$",<表示左对齐

print('{0}+{1}={2:$<6.2f}'.format(2.4,3.1,5.5))
#"2.4+3.1=5.50$$",6.2f表示宽6位,精度是2位,浮点型

print('{0:$<6.2f}'.format(5.5)) #或者
print('{:$<6.2f}'.format(5.5))
#"5.50$$",只有一个参数时

4. format的字典传递关键字参数格式化、列表传递位置参数格式化

dict_para = {'flag':'question','name':'Jack'}
print("what is your {flag}: {name}!".format(**dict_para))
#"what is your question: Jack!",用字典传递参数,'**'用于收集关键字参数

list_para = ['question','Jack']
print("what is your {}: {}!".format(*list_para))
# "what is your question: Jack!",用列表传递参数,'*'用于收集参数

5. format详细参数解释:来自菜鸟教程

数字格式输出描述
3.1415926 {:.2f} 3.14 保留小数点后两位
3.1415926 {:+.2f} +3.14 带符号保留小数点后两位
-1 {:+.2f} -1.00 带符号保留小数点后两位
2.71828 {:.0f} 3 不带小数
5 {:0>2d} 05 数字补零 (填充左边, 宽度为2)
5 {:x<4d} 5xxx 数字补x (填充右边, 宽度为4)
10 {:x<4d} 10xx 数字补x (填充右边, 宽度为4)
1000000 {:,} 1,000,000 以逗号分隔的数字格式
0.25 {:.2%} 25.00% 百分比格式
1000000000 {:.2e} 1.00e+09 指数记法
13 {:>10d}         13 右对齐 (默认, 宽度为10)
13 {:<10d} 13 左对齐 (宽度为10)
13 {:^10d}     13 中间对齐 (宽度为10)
11
'{:b}'.format(11)
'{:d}'.format(11)
'{:o}'.format(11)
'{:x}'.format(11)
'{:#x}'.format(11)
'{:#X}'.format(11)
1011
11
13
b
0xb
0XB
进制

^, <, > 分别是居中、左对齐、右对齐,后面带宽度, : 号后面带填充的字符,只能是一个字符,不指定则默认是用空格填充。

+ 表示在正数前显示 +,负数前显示 -;  (空格)表示在正数前加空格

b、d、o、x 分别是二进制、十进制、八进制、十六进制。

注意:format返回的是字符串。

参考:

https://www.cnblogs.com/lvcm/p/8859225.html

https://www.cnblogs.com/jonm/p/8280968.html

https://www.runoob.com/python/att-string-format.html

posted on 2019-11-02 21:41  落日峡谷  阅读(760)  评论(0编辑  收藏  举报

导航