python string format suppress/silent keyerror/indexerror(python字符串格式抑制/静默keyerror/indexerror)
问题描述
有没有办法使用python string.format,当索引丢失时不会抛出异常,而是插入一个空字符串.
Is there a way to use python string.format such that no exception is thrown when an index is missing, instead an empty string is inserted.
result = "i am an {error} example string {error2}".format(hello=2,error2="success")
这里,结果应该是:
"i am an example string success"
现在,python 抛出一个 keyerror 并停止格式化.是否可以改变这种行为?
Right now, python throws a keyerror and stops formatting. Is it possible to change this behavior ?
谢谢
存在 Template.safe_substitute (即使保留模式完整而不是插入空字符串),但 string.format 不能有类似的东西
There exists Template.safe_substitute (even that leaves the pattern intact instead of inserting an empty string) , but couldn't something similar for string.format
所需的行为类似于 php 中的字符串替换.
The desired behavior would be similar to string substitution in php.
class Formatter(string.Formatter):
def get_value(self,key,args,kwargs):
try:
if hasattr(key,"__mod__"):
return args[key]
else:
return kwargs[key]
except:
return ""
这似乎提供了所需的行为.
This seems to provide the desired behavior.
推荐答案
str.format()
不需要映射对象.试试这个:
str.format()
doesn't expect a mapping object. Try this:
from collections import defaultdict
d = defaultdict(str)
d['error2'] = "success"
s = "i am an {0[error]} example string {0[error2]}"
print s.format(d)
您使用返回"的 str()
工厂创建一个 defaultdict.然后你为 defaultdict 创建一个键.在格式字符串中,您访问传递的第一个对象的键.这样做的好处是允许您传递其他键和值,只要您的 defaultdict 是 format()
的第一个参数.
You make a defaultdict with a str()
factory that returns "". Then you make one key for the defaultdict. In the format string, you access keys of the first object passed. This has the advantage of allowing you to pass other keys and values, as long as your defaultdict is the first argument to format()
.
另外,请参阅 http://bugs.python.org/issue6081
这篇关于python字符串格式抑制/静默keyerror/indexerror的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:python字符串格式抑制/静默keyerror/indexerror


基础教程推荐
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01