How do I join the values of nested Python dictionary?
- by alex
Suppose I have a dictionary, and it's nested with dictionaries inside.
I want to join all the values of that dictionary, recursively?
' '.join(d.values())
That works if there are no nests.