在 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中文網其他相關文章!