Python 2.7 Can';t以俄语_Python2.7.9表示的输出

Python 2.7 Can';t以俄语_Python2.7.9表示的输出,python-2.7,encoding,character-encoding,Python 2.7,Encoding,Character Encoding,我不能用俄语输出,只能输出Unicode=( 我使用Pythonv.2.7.9 微软8 我怎样才能用列表做到这一点 #! /usr/bin/env python # -*- coding: utf-8 -*- import requests from bs4 import BeautifulSoup r = requests.get("http://fs.to/video/films/group/film_genre/") response = r.content.decode('utf

我不能用俄语输出,只能输出Unicode=(

我使用Pythonv.2.7.9 微软8

我怎样才能用列表做到这一点

  #! /usr/bin/env python
# -*- coding: utf-8 -*-
import requests
from bs4 import BeautifulSoup


r = requests.get("http://fs.to/video/films/group/film_genre/")
response = r.content.decode('utf-8')
page = BeautifulSoup(response)

for tag in page.findAll('li'):
    a = tag.find('a')
    for b in a.contents:
        print (u'{0}'.format(u'○'),unicode(b.string))
输出示例必须如下所示:

А

Биаафа

Ф


将最后一行更改为:

print (u'{0}'.format(u'○'),b.string

现在我的输出是:(u'\uu25cb,u'\u0410\u0410\u0410\U043\u0438\u0438\U043 3\U043\U043\U043\u043\u043\uu043.3我现在我的输出是:(u'\u'\ uuu25255CB,u'\u0410\u043\u043\u043\u043\u043\u043\u043 3\u043\u043\u043\u043 3\u043\u043\u043\u043 3\u043\u043 3 3 3 3\u043\U043\U043\U043\U043\U043\U043\U043\U043\U043\U043\U043\U043\U043\U043\u043\u\ u043d\u043d\u044b\u0439')(u'\u25cb',u'\u0414\u0435\u0442\u043a\u0442\u0438\u0432')(u'\u25cb',u'\u0414\u0435\u0442\u0441\u043a\u0438\u0439'))