私のリストはこのようなものです、
['"third:4"', '"first:7"', '"second:8"']
これをこのような辞書に変換したい...
{"third": 4, "first": 7, "second": 8}
Pythonでこれを行うにはどうすればよいですか?
私のリストはこのようなものです、
['"third:4"', '"first:7"', '"second:8"']
これをこのような辞書に変換したい...
{"third": 4, "first": 7, "second": 8}
Pythonでこれを行うにはどうすればよいですか?
以下に 2 つの可能な解決策を示します。1 つは文字列値を提供し、もう 1 つは int 値を提供します。
>>> lst = ['"third:4"', '"first:7"', '"second:8"']
>>> dict(x[1:-1].split(':', 1) for x in lst)
{'second': '8', 'third': '4', 'first': '7'}
>>> dict((y[0], int(y[1])) for y in (x[1:-1].split(':', 1) for x in lst))
{'second': 8, 'third': 4, 'first': 7}
ただし、読みやすくするために、変換を 2 つのステップに分割できます。
>>> lst = ['"third:4"', '"first:7"', '"second:8"']
>>> dct = dict(x[1:-1].split(':', 1) for x in lst)
>>> {k: int(v) for k, v in dct.iteritems()}
もちろん、これには dict を 2 回作成するため、いくらかのオーバーヘッドがありますが、小さなリストの場合は問題になりません。
>>> data
['"third:4"', '"first:7"', '"second:8"']
>>> dict((k,int(v)) for k,v in (el.strip('\'"').split(':') for el in data))
{'second': 8, 'third': 4, 'first': 7}
また
>>> data = ['"third:4"', '"first:7"', '"second:8"']
>>> def convert(d):
for el in d:
key, num = el.strip('\'"').split(':')
yield key, int(num)
>>> dict(convert(data))
{'second': 8, 'third': 4, 'first': 7}
def listToDic(lis):
dic = {}
for item in lis:
temp = item.strip('"').split(':')
dic[temp[0]] = int(temp[1])
return dic
それは非常にmap and dict
簡単です。
map(func, iterables)
to_dict
key, value
によって消費される戻りますdict
def to_dict(item):
return item[0].replace('"',''), int(item[1].replace('"', ''))
>>> items
6: ['"third:4"', '"first:7"', '"second:8"']
>>> dict(map(to_dict, [item.split(':') for item in items]))
7: {'first': 7, 'second': 8, 'third': 4}
help(dict)
class dict(object)
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list. For example: dict(one=1, two=2)
>>> dict(map(to_dict, [item.split(':') for item in items]))