I have dict something like this
d = { address { 'Avenue' : 3000,
'Street' : 3000,
'road' : 4000},
movieprice {
'panda' : 40,
'fastandfurious' : 30,
'starwars': 50}}
I want out put something like this
address Avenue,Street,road 4000 ---> last Column should max of values max(3000,3000,4000)
movie panda,fastandfurious,starwars 50 --> max of value.
Any help appreciated.