I have a dictionary that its value is a list and the values of the list are unicode , I would like to get them as a string , how do I go about geting them.
d = {'1':[u'06'],'2':[u'02',u'03',u'05',u'10']}
output for key '2'
:
02,03,05,10
Thanks.