在 Python 中,f 字符串提供了一种生成格式化字符串的简洁方法。但是,有时在其他地方定义模板并将其作为静态字符串导入是很有用的。为了有效地将这些静态字符串评估为动态 f 字符串,我们需要一种方法来推迟它们的评估。
虽然可以使用 .format(**locals()) 方法,但它涉及显式变量扩展。为了避免这种开销,请考虑以下策略:
<code class="python">def fstr(template): return eval(f'f"""{template}"""')</code>
此函数采用静态模板字符串并在运行时动态构造 f 字符串。例如,给定模板:
<code class="python">template = "The current name is {name}"</code>
我们可以使用以下方式对其进行评估:
<code class="python">print(fstr(template)) # Output: The current name is foo</code>
请注意,此方法还支持大括号内的表达式,例如:
<code class="python">template = "The current name is {name.upper() * 2}" print(fstr(template)) # Output: The current name is FOOFOO</code>
通过使用 fstr() 函数推迟 f 字符串的评估,开发人员可以保持代码清晰度并简化 Python 中的模板处理。
以上是如何在 Python 中推迟 F 字符串的求值?的详细内容。更多信息请关注PHP中文网其他相关文章!