Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
76 views
in Technique[技术] by (71.8m points)

python - Generate a nested dictionary from a string

I would like to obtain a nested dictionary from a string, which can be split by delimiter, :.

s='A:B:C:D'
v=['some','object']
desired={'A':{'B':{'C':{'D':v}}}}

Is there a "pythonic" way to generate this?

question from:https://stackoverflow.com/questions/65890917/generate-a-nested-dictionary-from-a-string

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can write a recursive function to do this:

>>> s = 'A:B:C:D'
>>> v = ['some','object']
>>> def generate_dict(keys, val):
...     if len(keys) == 1:
...             return {keys[0]: val}
...     return {keys[0]:generate_dict(keys[1:], val)}
...
>>> generate_dict(s.split(':'), v)
{'A': {'B': {'C': {'D': ['some', 'object']}}}}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...