F 字串提供了一種在 Python 中格式化字串的便捷方法。然而,當使用動態模板或文件時,需要推遲或推遲 f 字串的評估。這帶來了挑戰,因為解釋器無法直接解釋帶有格式標記的靜態字串。
此問題的可靠解決方案涉及使用將字串計算為f 字串。以下函數用於此目的:
<code class="python">def fstr(template): return eval(f'f"""{template}"""')</code>
使用fstr 函數,您可以推遲f 字串計算,如下所示:
<code class="python">template_a = "The current name is {name}" names = ["foo", "bar"] for name in names: print(fstr(template_a)) # Output: The current name is foo # The current name is bar</code>
請請注意, fstr 函數正確計算字串中的表達式,例如name.upper() * 2:
<code class="python">template_b = "The current name is {name.upper() * 2}" for name in names: print(fstr(template_b)) # Output: The current name is FOOFOO # The current name is BARBAR</code>
這種方法提供了一種簡潔而方便的方法來在必要時處理f 字符字串評估,允許在程式碼庫中進行動態字串格式化。
以上是如何在 Python 中按需評估 F 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!