I am very new with Python and I am trying to print a single object from a unicode array that I retrieved from my server. My array look like this when I print the results:
{u'results': [{u'playerName': u'Sean Plott', u'score': u'12'}]
I would like to print the result in playerName as a string only. Thanks in advance.
{u'results': [{u'playerName': u'Sean Plott', u'score': u'12'}]}