python format 用法详解
Posted amou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python format 用法详解相关的知识,希望对你有一定的参考价值。
format 用法详解
print(‘hello {0} i am {1}‘.format(‘world‘,‘python‘)) # 输入结果:hello world i am python print(‘hello {} i am {}‘.format(‘world‘,‘python‘) ) #输入结果:hello world i am python print(‘hello {0} i am {1} . a now language-- {1}‘.format(‘world‘,‘python‘) # 输出结果:hello world i am python . a now language-- python
obj = ‘world‘ name = ‘python‘ print(‘hello, {obj} ,i am {name}‘.format(obj = obj,name = name)) # 输入结果:hello, world ,i am python
list=[‘world‘,‘python‘] print(‘hello {names[0]} i am {names[1]}‘.format(names=list))# 输出结果:hello world i am python print(‘hello {0[0]} i am {0[1]}‘.format(list)) #输出结果:hello world i am python
dict={‘obj’:’world’,’name’:’python’} print(‘hello {names[obj]} i am {names[name]}’.format(names=dict)) # hello world i am python
6.使用魔法参数
args = [‘,’,’inx’] kwargs = {‘obj’: ‘world’, ‘name’: ‘python’} print(‘hello {obj} {} i am {name}’.format(*args, **kwargs)) # 输入结果:hello world , i am python
注意:魔法参数跟你函数中使用的性质是一样的:这里format(*args, **kwargs)) 等价于:format(‘,’,’inx’,obj = ‘world’,name = ‘python’)
format 格式转换
数字 | 格式 | 输出 | 描述 |
---|---|---|---|
3.1415926 | {:.2f} | 3.14 | 保留小数点后两位 |
3.1415926 | {:+.2f} | 3.14 | 带符号保留小数点后两位 |
-1 | {:+.2f} | -1 | 带符号保留小数点后两位 |
2.71828 | {:.0f} | 3 | 不带小数 |
1000000 | {:,} | 1,000,000 | 以逗号分隔的数字格式 |
0.25 | {:.2%} | 25.00% | 百分比格式 |
1000000000 | {:.2e} | 1.00E+09 | 指数记法 |
25 | {0:b} | 11001 | 转换成二进制 |
25 | {0:d} | 25 | 转换成十进制 |
25 | {0:o} | 31 | 转换成八进制 |
25 | {0:x} | 19 | 转换成十六进制 |
5 | {:0>2} | 05 | 数字补零(填充左边, 宽度为2) |
5 | {:x<4} | 5xxx | 数字补x (填充右边, 宽度为4) |
10 | {:x^4} | x10x | 数字补x (填充两边,优先左边, 宽度为4) |
13 | {:10} | 13 | 右对齐 (默认, 宽度为10) |
13 | {:<10} | 13 | 左对齐 (宽度为10) |
13 | {:^10} | 13 | 中间对齐 (宽度为10) |
b、d、o、x分别是二进制、十进制、八进制、十六进制。
其它用法
1.转义“{}”
print(‘{{hello}} {{{0}}}‘.format(‘world‘)) #输出结果:{hello} {world}
name = ‘InX‘ hello = ‘hello,{} welcome to python world!!!‘.format #定义一个问候函数 hello(name) # 输入结果:hello,inx welcome to python world!!!
from datetime import datetime now=datetime.now() print ‘{:%Y-%m-%d %X}‘.format(now) # 输出结果:2017-07-24 16:51:42
print(‘hello {0:>{1}} ‘.format(‘world‘,10)) ##输出结果:hello world
请给作者点赞:---> 原文链接
!--EndFragment-->!--StartFragment-->以上是关于python format 用法详解的主要内容,如果未能解决你的问题,请参考以下文章