format函数python是什么意思_python中format函数指的是什么
意思
python中format函数指的是什么意思
发布时间:2020-11-05 13:52:38
来源:亿速云
阅读:93
作者:⼩新
⼩编给⼤家分享⼀下python中format函数指的是什么意思,相信⼤部分⼈都还不怎么了解,因此分享这篇⽂章给⼤家参考⼀下,希望⼤家阅读完这篇⽂章后⼤有收获,下⾯让我们⼀起去了解⼀下吧!
python中format函数什么意思?
Python2.6 开始,新增了⼀种格式化字符串的函数 str.format(),它增强了字符串格式化的功能。
基本语法是通过 {} 和 : 来代替以前的 % 。
format 函数可以接受不限个参数,位置可以不按顺序。
实例>>>"{} {}".format("hello", "world") # 不设置指定位置,按默认顺序
'hello world'
>>> "{0} {1}".format("hello", "world") # 设置指定位置
'hello world'
>>> "{1} {0} {1}".format("hello", "world") # 设置指定位置
'world hello world'
python怎么读的也可以设置参数:
实例#!/usr/bin/python
# -*- coding: UTF-8 -*-
print("⽹站名:{name}, 地址 {url}".format(name="菜鸟教程", url="www.runoob"))
# 通过字典设置参数
site = {"name": "菜鸟教程", "url": "www.runoob"}
print("⽹站名:{name}, 地址 {url}".format(**site))
# 通过列表索引设置参数
my_list = ['菜鸟教程', 'www.runoob']
print("⽹站名:{0[0]}, 地址 {0[1]}".format(my_list)) # "0" 是必须的
输出结果为:⽹站名:菜鸟教程, 地址 www.runoob
⽹站名:菜鸟教程, 地址 www.runoob
⽹站名:菜鸟教程, 地址 www.runoob
也可以向 str.format() 传⼊对象:
实例#!/usr/bin/python
# -*- coding: UTF-8 -*-
class AssignValue(object):
def __init__(self, value):
self.value = value
my_value = AssignValue(6)
print('value 为: {0.value}'.format(my_value)) # "0" 是可选的
输出结果为:value 为: 6
以上是python中format函数指的是什么意思的所有内容,感谢各位的阅读!相信⼤家都有了⼀定的了解,希望分享的内容对⼤家有所帮助,如果还想学习更多知识,欢迎关注亿速云⾏业资讯频道!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论