我正在使用模板字符串生成一些文件,我喜欢为此目的使用新的 f 字符串的简洁性,因为它减少了我以前的模板代码,如下所示:
template_a = "The current name is {name}"
names = ["foo", "bar"]
for name in names:
print (template_a.format(**locals()))
现在我可以这样做了,直接替换变量:
names = ["foo", "bar"]
for name in names:
print (f"The current name is {name}")
然而,有时在别处定义模板是有意义的——在代码的更高层,或者从文件或其他东西导入。这意味着模板是一个带有格式化标签的静态字符串。字符串必须发生某些事情才能告诉解释器将字符串解释为新的 f 字符串,但我不知道是否存在这样的事情。
有什么方法可以引入字符串并将其解释为 f 字符串以避免使用 .format(**locals())
调用?
理想情况下,我希望能够像这样编写代码……(其中 magic_fstring_function
是我不理解的部分所在):
template_a = f"The current name is {name}"
# OR [Ideal2] template_a = magic_fstring_function(open('template.txt').read())
names = ["foo", "bar"]
for name in names:
print (template_a)
…有了这个所需的输出(无需两次读取文件):
The current name is foo
The current name is bar
…但我得到的实际输出是:
The current name is {name}
The current name is {name}
原文由 JDAnders 发布,翻译遵循 CC BY-SA 4.0 许可协议
这是一个完整的“理想2”。
它不是 f 弦——它甚至不使用 f 弦——但它会按要求使用。完全按照指定的语法。没有安全问题,因为我们没有使用
eval()
。它使用一个小类并实现
__str__
由打印自动调用。为了摆脱类的有限范围,我们使用inspect
模块向上跳一帧并查看调用者有权访问的变量。