Python字符串格式化特殊字符

发布于 2024-08-09 11:15:44 字数 133 浏览 5 评论 0原文

如何使下面的代码工作?

example = "%%(test)%" % {'test':'name',}
print example

所需的输出是“%name%”

谢谢

How do you make the following code work?

example = "%%(test)%" % {'test':'name',}
print example

Where the desired output is "%name%"

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

a√萤火虫的光℡ 2024-08-16 11:15:44

另一种方法是使用新的高级字符串格式

>>> example = "%{test}%".format(test="name")
>>> print example
%name%

An alternative is to use the new Advanced String Formatting

>>> example = "%{test}%".format(test="name")
>>> print example
%name%
酒绊 2024-08-16 11:15:44
example = "%%%(test)s%%" % {'test':'name',}
print example

%(key)s 是由 key 标识的字符串的占位符。使用 % 运算符时,%% 会转义 %

example = "%%%(test)s%%" % {'test':'name',}
print example

%(key)s is a placeholder for a string identified by key. %% escapes % when using the % operator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文