我站在以下问题的前面。 我正在使用python3构建一个小型的卸载Java工具。
我可以读出所需的所有内容,但是当我尝试向Windows发送“卸载”命令时,无法正确完成解析。
搜索已安装软件的命令如下:
wmic_output = os.popen('''wmic product where "name like 'Java 8 Update %%'" get name''').read()
在os.popen字符串中没有任何变量,一切正常。现在尝试执行命令似乎更加棘手...
productname = str(uninstallcall[inx])
# Check if Version is installed, if so uninstall
wmic_output1 = os.popen('''wmic product where "name like '%s'" get name''').read()
result1 = parse_wmic_output(wmic_output1 % (productname))
是的,这样做时productname变量可以正常打印:/
要使用以下http://autosqa.com/2016/03/18/how-to-parse-wmic-output-with-python/中的以下内容来解析Im:
def parse_wmic_output(text):
result = []
# remove empty lines
lines = [s for s in text.splitlines() if s.strip()]
# No Instance(s) Available
if len(lines) == 0:
return result
header_line = lines[0]
# Find headers and their positions
headers = re.findall('\S+\s+|\S$', header_line)
pos = [0]
for header in headers:
pos.append(pos[-1] + len(header))
for i in range(len(headers)):
headers[i] = headers[i].strip()
# Parse each entries
for r in range(1, len(lines)):
row = {}
for i in range(len(pos)-1):
row[headers[i]] = lines[r][pos[i]:pos[i+1]].strip()
result.append(row)
return result
答案 0 :(得分:0)
%s
,您是否要在该位置插入变量?如果是这样的话 您需要执行"some %s variable" % variable_to_inser
。或清洁工 方式,f"some {productname} here"
(如果一开始很重要 的字符串)。 – @Torxed
这可以解决我的问题,如下所示:
wmic_output = os.popen(f'''wmic product where "name like {variablename}" get name''').read()