gpt4 book ai didi

python - 如何处理格式化可能是 f 字符串的常规字符串 [C0209]

转载 作者:行者123 更新时间:2023-12-05 02:37:34 24 4
gpt4 key购买 nike

对于以下行:

print("{0: <24}".format("==> core=") + str(my_dict["core"]))

我收到以下警告消息:

[consider-using-f-string] Formatting a regular string which could be a f-string [C0209]

我可以使用 f-string 重新格式化它吗?

最佳答案

您可以将代码更改为 print(f"{'==> core=': <24}{my_dict['core']}") .转换为字符串是隐式的。

关于python - 如何处理格式化可能是 f 字符串的常规字符串 [C0209],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69921688/

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