在添加到字典之前删除键和值的空格

时间:2018-02-21 04:49:43

标签: python python-2.7

我的代码如下:

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之前对键和值进行条带化

0 个答案:

没有答案