I know that it shouldn't be hard, however, I can't resolve my issue.
I have a nested dictionary and I need to convert its values to the same structure tuple.
dict1 = {'234':32,'345':7,'123':{'asd':{'pert': 600, 'sad':500}}}
The result should be like:
list1 = (32, 7, ((600, 500)))
Do you have any suggestions how to do that?
Thank you!