首頁 > 後端開發 > Python教學 > 如何在 Python 中延遲靜態模板的 F 字串計算?

如何在 Python 中延遲靜態模板的 F 字串計算?

Mary-Kate Olsen
發布: 2024-10-30 09:08:03
原創
529 人瀏覽過

How to Defer F-String Evaluation in Python for Static Templates?

按需解釋 F 字串

在 Python 中,f 字串提供了一種方便的字串插值語法。但是,當使用從外部來源讀取或在程式碼中其他位置定義的靜態範本時,可能需要延遲這些字串的評估。

推遲 F 字串評估

為了避免需要對於使用靜態模板時的 .format(**locals()) 調用,可以使用 Python 函數。 fstr 函數定義如下,允許我們將字串計算為f 字串:

<code class="python">def fstr(template):
    return eval(f'f&quot;&quot;&quot;{template}&quot;&quot;&quot;')</code>
登入後複製

用法範例

使用fstr,我們可以使用變數中定義的靜態範本或從檔案中讀取取並將值插入其中。考慮以下範例:

<code class="python">template_a = "The current name is {name}"
names = ["foo", "bar"]

for name in names:
    print(fstr(template_a))  # Evaluates the template with the current 'name'</code>
登入後複製

輸出:

The current name is foo
The current name is bar
登入後複製

請注意,由於模板是在運行時計算的,因此也可以在大括號內使用複雜表達式,例如name 。 upper() * 2 在以下範例:

<code class="python">template_b = "The current name is {name.upper() * 2}"

for name in names:
    print(fstr(template_b))</code>
登入後複製

輸出:

The current name is FOOFOO
The current name is BARBAR
登入後複製

以上是如何在 Python 中延遲靜態模板的 F 字串計算?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板