gpt4 book ai didi

python - 标准错误写入;打印字符串

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

我是 Python 新手,在使用 stderr.write 函数时遇到了一些问题。我将尝试用代码来说明它。在我这样做之前:

print "Unexpected error! File {0} could not be converted." .format(src)

但后来我想将错误消息与其他状态消息分开,所以我尝试这样做:

sys.stderr.write "Unexpected error! File %s could not be converted." src

但这会导致错误。我也用谷歌搜索,但我找不到任何东西。谁能帮我解决这个问题。如何使用 stderr.write 打印字符串 src

最佳答案

在 Python 2.x 中:

sys.stderr.write("Unexpected error! File %s could not be converted." % src)

或者,在 Python 2.x 和 3.x 中:

sys.stderr.write("Unexpected error! File {0} could not be converted.".format(src))

关于python - 标准错误写入;打印字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6663778/

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