Trying in python to create single line output from multiple dict with same keys.
[{u'Value': u'nine', u'Key': u'nine'}, 
 {u'Value': u'six', u'Key': u'six'}, 
 {u'Value': u'four', u'Key': u'four'}, 
 {u'Value': u'one', u'Key': u'one'}, 
 {u'Value': u'seven', u'Key': u'seven'}, 
 {u'Value': u'ten', u'Key': u'ten'}, 
 {u'Value': u'two', u'Key': u'two'},
 {u'Value': u'three', u'Key': u'three'}, 
 {u'Value': u'five', u'Key': u'five'}, 
 {u'Value': u'eight', u'Key': u'eight'}]
Output I'm looking for:
nine nine six six four four one one...... eight eight or
nine:nine six:six.............eight:eight
I tried various options single expression
 
     
     
     
     
    