Python内置函数:format() 函数

Python2.6 开始,新增了一种格式化字符串的函数 str.format(),它增强了字符串格式化的功能。

1.基本语法:

通过 {} 和 : 来代替以前的 % ;

2.实例

设置参数方式 实例
通过元组设置参数

1.# 不设置指定位置,按默认顺序

"{} {}".format("hello", "world")

2.# 设置指定位置

"{1} {0} {1}".format("hello", "world")  

通过关键字设置参数 "网站名:{name}, 地址 {url}".format(name="菜鸟教程",url="www.runoob.com")
通过字典设置参数 site = {"name": "菜鸟教程", "url": "www.runoob.com"}
print("网站名:{name}, 地址 {url}".format(**site))
通过列表索引设置参数 my_list = ['菜鸟教程', 'www.runoob.com']
print("网站名:{0[0]}, 地址 {0[1]}".format(my_list))  # "0" 是必须的
通过class对象设置参数

class AssignValue(object):

    def __init__(self, value):

         self.value = value my_value = AssignValue(6)

 

print('value 为: {0.value}'.format(my_value)) # "0" 是可选的,value是实例属性

数字格式化 print(":.2f".format(3.1415926)

参考文章:

python内置函数format的使用方法

Python format 格式化函数

你可能感兴趣的:(Python内置函数:format() 函数)