Python 字符串格式化

发布于 2024-10-14 12:07:01 字数 295 浏览 1 评论 0原文

我正在构建几个命令字符串以传递给 os.system。我想将常见的内容分组到一个字符串中,然后根据需要添加特定的内容。例如:

CMD = "python app.py %s -o %s > /dev/null"
option1 = "-i 192.169.0.1"
option2 = "results-file"
cmd = CMD, (option1, option2) #doesn't work
os.system(cmd)

我知道 cmd 是一个元组。如何让 cmd 成为我想要的命令字符串?

I'm building up several command strings to pass to os.system. I want to group the common stuff into a string then add the specific stuff as needed. For example:

CMD = "python app.py %s -o %s > /dev/null"
option1 = "-i 192.169.0.1"
option2 = "results-file"
cmd = CMD, (option1, option2) #doesn't work
os.system(cmd)

I know cmd is a tuple. How do I get cmd to be the command string I want?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦过后 2024-10-21 12:07:01

您使用 % 运算符。

cmd = CMD % (option1, option2)

另请参阅:有关字符串格式化的 Python 文档

You use the % operator.

cmd = CMD % (option1, option2)

See also: Python documentation on string formatting

满身野味 2024-10-21 12:07:01

您可以使用字符串 format() 方法来处理 格式字符串语法

CMD = "python app.py {} -o {} > /dev/null"
option1 = "-i 192.169.0.1"
option2 = "results-file"
os.system(CMD.format(option1, option2))

You could do it this way using the string format() method which processes Format String Syntax:

CMD = "python app.py {} -o {} > /dev/null"
option1 = "-i 192.169.0.1"
option2 = "results-file"
os.system(CMD.format(option1, option2))
简单气质女生网名 2024-10-21 12:07:01
cmd = CMD % (option1, option2)

此处对此进行了解释

cmd = CMD % (option1, option2)

This is explained here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文