format函数字符串格式化

1.描述

函数原型:format(value[, format_spec]) 参数意义: value: 需要被格式化的字符串 format_spec: 格式化的格式

2.实例

''' 根据位置 '''
>>>"{} {}".format("hello""Eleven")    # 不设置指定位置,按默认顺序
'hello Eleven'
 
>>> "{0} {1}".format("hello""Eleven")  # 设置指定位置
'hello Eleven'
 
>>> "{1} {0} {1}".format("hello""Eleven")  # 设置指定位置
'Eleven hello Eleven'
''' 通过字典设置参数 '''
site = {"name""Eleven-Blog""url""https://github.com/elevenwsy/eleven-blog"}
print("网站名:{name}, 地址 {url}".format(**site))    # 网站名:Eleven-Blog, 地址 https://github.com/elevenwsy/eleven-blog

''' 通过列表索引设置参数 '''
my_list = ['Eleven-Blog''https://github.com/elevenwsy/eleven-blog']
print("网站名:{0[0]}, 地址 {0[1]}".format(my_list))  # 网站名:Eleven-Blog, 地址 https://github.com/elevenwsy/eleven-blog

posted @   酷酷的伊莱文  阅读(228)  评论(0编辑  收藏  举报
编辑推荐:
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
阅读排行:
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· 语音处理 开源项目 EchoSharp
· 《HelloGitHub》第 106 期
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 使用 Dify + LLM 构建精确任务处理应用
点击右上角即可分享
微信分享提示