python中强大的format函数实例详解
作者:hp_cpp 时间:2022-02-19 18:47:10
python中format函数用于字符串的格式化
自python2.6开始,新增了一种格式化字符串的函数str.format(),此函数可以快速处理各种字符串。
语法
它通过{}和:来代替%。
请看下面的示例,基本上总结了format函数在python的中所有用法
#通过位置
print '{0},{1}'.format('chuhao',20)
print '{},{}'.format('chuhao',20)
print '{1},{0},{1}'.format('chuhao',20)
#通过关键字参数
print '{name},{age}'.format(age=18,name='chuhao')
class Person:
def __init__(self,name,age):
self.name = name
self.age = age
def __str__(self):
return 'This guy is {self.name},is {self.age} old'.format(self=self)
print str(Person('chuhao',18))
#通过映射 list
a_list = ['chuhao',20,'china']
print 'my name is {0[0]},from {0[2]},age is {0[1]}'.format(a_list)
#my name is chuhao,from china,age is 20
#通过映射 dict
b_dict = {'name':'chuhao','age':20,'province':'shanxi'}
print 'my name is {name}, age is {age},from {province}'.format(**b_dict)
#my name is chuhao, age is 20,from shanxi
#填充与对齐
print '{:>8}'.format('189')
# 189
print '{:0>8}'.format('189')
#00000189
print '{:a>8}'.format('189')
#aaaaa189
#精度与类型f
#保留两位小数
print '{:.2f}'.format(321.33345)
#321.33
#用来做金额的千位分隔符
print '{:,}'.format(1234567890)
#1,234,567,890
#其他类型 主要就是进制了,b、d、o、x分别是二进制、十进制、八进制、十六进制。
print '{:b}'.format(18) #二进制 10010
print '{:d}'.format(18) #十进制 18
print '{:o}'.format(18) #八进制 22
print '{:x}'.format(18) #十六进制12
总结
以上所述是小编给大家介绍的python中强大的format函数实例详解网站的支持!
来源:https://blog.csdn.net/hp_cpp/article/details/84823498
标签:python,format,函数
0
投稿
猜你喜欢
Python正则表达式实现截取成对括号的方法
2023-08-22 23:01:47
带你从内存的角度看Python中的变量
2021-02-13 13:27:50
java连接mysql底层封装详解
2024-01-26 17:31:19
js 目录列举函数
2024-06-05 09:12:50
Vue.js中的图片引用路径的方式
2024-05-09 15:28:10
python+opencv实现目标跟踪过程
2023-03-29 01:29:15
Python中replace方法实例分析
2023-09-30 05:42:53
python中 OpenCV和Pillow处理图像操作及时间对比
2021-02-04 16:46:52
详解IOS微信上Vue单页面应用JSSDK签名失败解决方案
2024-04-30 10:25:40
thinkphp实现多语言功能(语言包)
2024-05-22 10:05:21
Python内置函数dir详解
2023-05-29 13:38:10
Vscode 基础使用教程大全
2023-03-06 01:58:18
Python中的 ansible 动态Inventory 脚本
2022-10-23 07:53:08
Mysql数据表中的蠕虫复制使用方法
2024-01-24 15:06:06
详解Python中Pyyaml模块的使用
2021-08-19 08:18:23
用python分割TXT文件成4K的TXT文件
2022-06-27 02:12:44
优雅地使用loading(推荐)
2024-04-30 08:42:01
再谈 MySQL 数据库备份恢复和乱码问题
2009-08-19 09:35:00
Python 通过截图匹配原图中的位置(opencv)实例
2021-10-06 02:04:44
python 含子图的gif生成时内存溢出的方法
2022-11-30 05:33:12