I'm new to python, this is currently printing correctly, though I want it to show a specific number from the print.
from facepy import GraphAPI
graph = GraphAPI("Facebook access token")
query = graph.fql('SELECT unread_count FROM mailbox_folder WHERE folder_id = 0')
print query
This prints out
{u'data': [{u'unread_count': 2}]}
though I'd like to only show the number 2.. I've tried countless methods which I've deleted them as I tried. Why does python prints with the u' behind the information being printed?