gpt4 book ai didi

python - 有没有办法在 f 字符串中包含注释?

转载 作者:行者123 更新时间:2023-12-04 00:19:13 25 4
gpt4 key购买 nike

mo 在 f 字符串中包含注释会很有用。例如,拿这个代码:

f"""
<a
href="{ escape(url) }"
target="_blank" { # users expect link to open in new tab }
>bla</a>
"""

如果此代码等效于:
f"""
<a
href="{ escape(url) }"
target="_blank"
>bla</a>
"""

您可以在大括号之间包含完整的 Python 表达式,但看起来您不能包含注释。我对么?有没有办法做到这一点?

最佳答案

来自 PEP498 :

Comments, using the '#' character, are not allowed inside an expression.



除了放置 '#' 之外没有其他方法可以发表评论Python 中的字符,所以这是不可能的。

关于python - 有没有办法在 f 字符串中包含注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61972492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com