Python:字符串+字符串

Python: String + String

在正常情况下,string + string 有效,但在这里我无法在我的 chrome 代码中获取 URL1。

URL1 = "https://www.google.com/"
os.system('start chrome "url here" --incognito --window-position=-10,-3 --window-size=550,1030')

我试过

os.system('start chrome "%s" --incognito --window-position=-10,-3 --window-size=550,1030') % (URL1)

但是也没用。

有什么帮助吗?

您可以使用f-string

代码try it here

import os

URL1 = "https://www.google.com/"

os.system(f'start chrome "{URL1}" --incognito --window-position=-10,-3 --window-size=550,1030')

您可以尝试 f-string 格式化:

os.system(f'start chrome {URL1} --incognito --window-position=-10,-3 --window-size=550,1030') 

这会起作用。

你 运行 os.system 然后将元组与 URL1 一起使用,与结果连接

os.system('start chrome "%s" --incognito --window-position=-10,-3 --window-size=550,1030') % (URL1)

需要更改为

os.system(('start chrome "%s" --incognito --window-position=-10,-3 --window-size=550,1030') % (URL1))