gpt4 book ai didi

python - 清理打印命令

转载 作者:太空宇宙 更新时间:2023-11-04 08:27:46 24 4
gpt4 key购买 nike

我正在使用这行代码:

fwhost1 = "172.16.17.1"
print("Connecting via API call, backing up the configuration for:", fwhost1)

这一行的输出是:

('Connecting via API call, backing up the configuration for:', '172.16.17.1')

我希望在脚本运行时不要在输出中出现括号和单引号。

谢谢

我试过调整代码行,但这是唯一不会出错的方法

最佳答案

您可以使用+ 运算符连接字符串。更多信息 here

fwhost1 = "172.16.17.1" 
print("Connecting via API call, backing up the configuration for: " + fwhost1)

这是使用 %-formatting 打印的另一种方式

print("Connecting via API call, backing up the configuration for: %s" % fwhost1)

另一种选择是使用 str.format()

print("Connecting via API call, backing up the configuration for: {}".format(fwhost1))

如果您使用的是 Python 3,则可以使用 f-strings

print(f"Connecting via API call, backing up the configuration for: {fwhost1}")

输出

Connecting via API call, backing up the configuration for: 172.16.17.1

关于python - 清理打印命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55526193/

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