gpt4 book ai didi

Python字符串格式化特殊字符

转载 作者:太空宇宙 更新时间:2023-11-03 12:29:48 25 4
gpt4 key购买 nike

如何使下面的代码工作?

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

所需的输出是“%name%”

谢谢

最佳答案

另一种方法是使用新的 Advanced String Formatting

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

关于Python字符串格式化特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1629755/

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