gpt4 book ai didi

python - 在 Python PEP 8 的字符串中使用反斜杠时使日志输出漂亮吗?

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

我有一个 CLI 脚本,它使用日志记录模块打印到屏幕和文件。在使用 \ 为 PEP8 打断长行时,是否有可能使输出看起来更好

logger.warning("SKIPPED File: '%s'; \
MyFunc() returned no results."
% (dir_file, ))

# You have to scroll to see the result -->
WARNING----SKIPPED File: 'test-filetypes/client-somefile.txt'; MyFunc() returned no results.

最佳答案

是的,使用隐式字符串连接:

logger.warning(
"SKIPPED File: '%s'; "
"MyFunc() returned no results.",
dir_file,
)

注意:我在这里修复了另一个细节 - 你不应该急于格式化你的日志字符串。只需将模板变量作为日志调用中的参数传递即可。

关于python - 在 Python PEP 8 的字符串中使用反斜杠时使日志输出漂亮吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50420211/

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