I have something like that :
a = [{"country":"Colombia","date":"1995"}, {"country":"China","date":"1995"},{"country":"USA","date":"1992"}]
And what I want is that : "Colombia-China-USA"
I thought to use join('-')
but a is not like that : a = ['Colombia', 'China', 'USA']
Could you help me please ?
Thank you very much !