使用範本字串編寫檔案時,f 字串的簡潔性非常有吸引力。然而,當模板定義位於直接程式碼上下文之外時,就會出現困難。我們怎麼能延後 f 字串的計算,從而消除對 format(**locals()) 呼叫的需要?
輸入 fstr(),一個解決這個困境的強大函數。它的工作原理如下:
<code class="python">def fstr(template): return eval(f'f"""{template}"""')</code>
要使用此函數,只需在所需模板上調用fstr() 即可:
<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() 允許模板中更複雜的表達式,包括函數呼叫和屬性存取:
<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 字串的評估,保留其簡潔和動態模板處理的強大功能。
以上是我們如何將 F 字串的求值推遲到直接程式碼上下文之外?的詳細內容。更多資訊請關注PHP中文網其他相關文章!