I wrote a python script which doesn't declare any utf-8 or anything. When I execute the script, I see character 'u' added. Why is that? I am using Python2.7 version.
access_token = token.json()['access_token'] print(' "' + access_token + '"' ) url = 'https://api.yelp.com/v3/businesses/search' bearer = 'Bearer ' + access_token print(bearer) header = {'Authorization':'Bearer ' + access_token} print(header) params = {'location': 'San Bruno', 'term': 'Restaurant', 'radius':'25 miles', 'locale':'en_US', 'sort_by': 'rating', 'limit':'50' } I see a strange character u being added
