如何在 Python 中按需評估 F 字串?

Patricia Arquette
發布: 2024-10-31 08:55:02
原創
297 人瀏覽過

How Can You Evaluate F-Strings on Demand in Python?

按需評估 F 字串

F 字串提供了一種在 Python 中格式化字串的便捷方法。然而,當使用動態模板或文件時,需要推遲或推遲 f 字串的評估。這帶來了挑戰,因為解釋器無法直接解釋帶有格式標記的靜態字串。

使用自訂函數

此問題的可靠解決方案涉及使用將字串計算為f 字串。以下函數用於此目的:

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

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