Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #100754
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Newbie: Convert strings in nested dict to tuples |
| Date | 2015-12-23 00:22 +0100 |
| Organization | None |
| Message-ID | <mailman.73.1450826591.2237.python-list@python.org> (permalink) |
| References | <b2962e5a-80fc-4012-a9d6-0caa8abd8a2c@googlegroups.com> |
KP wrote:
> I now know how to convert a string cont. coordinates to a tuple, but hwo
> can I do this?
>
> Given
>
> cfg = {'canvas': ('3840', '1024'),
> 'panel1': {'gpio': '1', 'id': '4', 'co': '0,0,1280,1024'},
> 'panel2': {'gpio': '2', 'id': '5', 'co': '1280,0,2560,1024'},
> 'panel3': {'gpio': '3', 'id': '6', 'co': '2560,0,3840,1024'}}
>
> how can I transform cfg to
>
> cfg = {'canvas': ('3840', '1024'),
> 'panel1': {'gpio': '1', 'id': '4', 'co': ('0','0','1280','1024')},
> 'panel2': {'gpio': '2', 'id': '5', 'co':
> ('1280','0','2560','1024')}, 'panel3': {'gpio': '3', 'id': '6',
> 'co': ('2560','0','3840','1024')}}
>
> Again, thanks for all help!
>>> cfg = {'canvas': ('3840', '1024'),
... 'panel1': {'gpio': '1', 'id': '4', 'co': '0,0,1280,1024'},
... 'panel2': {'gpio': '2', 'id': '5', 'co': '1280,0,2560,1024'},
... 'panel3': {'gpio': '3', 'id': '6', 'co': '2560,0,3840,1024'}}
>>>
>>> for value in cfg.values():
... if isinstance(value, dict):
... value["co"] = tuple(value["co"].split(","))
...
>>> import pprint
>>> pprint.pprint(cfg)
{'canvas': ('3840', '1024'),
'panel1': {'co': ('0', '0', '1280', '1024'), 'gpio': '1', 'id': '4'},
'panel2': {'co': ('1280', '0', '2560', '1024'), 'gpio': '2', 'id': '5'},
'panel3': {'co': ('2560', '0', '3840', '1024'), 'gpio': '3', 'id': '6'}}
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Newbie: Convert strings in nested dict to tuples KP <kai.peters@gmail.com> - 2015-12-22 15:14 -0800
Re: Newbie: Convert strings in nested dict to tuples Peter Otten <__peter__@web.de> - 2015-12-23 00:22 +0100
Re: Newbie: Convert strings in nested dict to tuples KP <kai.peters@gmail.com> - 2015-12-22 15:31 -0800
csiph-web