我的代码如下:
d = {}
for line in output.split("\n"):
if ":" not in line:
continue
print line
key, value = line.strip().split("=", 1) # Remove white spaces for value and key
d[key] = value
输出有:
apples : 10
unknown : 20
在上面的代码中,我们如何在添加字典d之前对键和值进行条带化