首頁  >  文章  >  後端開發  >  如何在 Python 中延後 F 字串的求值?

如何在 Python 中延後 F 字串的求值?

Linda Hamilton
Linda Hamilton原創
2024-11-01 15:43:02536瀏覽

How to Defer Evaluation of F-Strings in Python?

延遲 F 字串的計算

在 Python 中,f 字串提供了一種產生格式化字串的簡潔方法。但是,有時在其他地方定義模板並將其作為靜態字串導入是很有用的。為了有效地將這些靜態字串評估為動態 f 字串,我們需要一種方法來推遲它們的評估。

雖然可以使用 .format(**locals()) 方法,但它涉及明確變數擴展。為了避免這種開銷,請考慮以下策略:

<code class="python">def fstr(template):
    return eval(f'f&quot;&quot;&quot;{template}&quot;&quot;&quot;')</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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn