次のコードがあります。
html = urllib2.urlopen(
'https://ebet.tab.co.nz/results/CHCG-reslt05070400.html').read()
soup = BeautifulSoup(html)
data = soup.findAll('div', {'class' : 'header bold'})
match = re.search('R', data[0].text)
race_title = data[0].text[(match.start()):]
race_title = str(race_title.strip(' \t\n\r'))
print race_title
コンソールの画面に表示される出力は以下のとおりです
Race 1 PEDIGREE ADVANCE SPRINT
C0
295 m
strip は SPRINT と C0 の間のあらゆるタイプのスペースを取り除くと思っていましたが、明らかに何かが欠けているので、この結果を理解するのに助けが必要です。bs4がUnicodeで文字列を出力したからですか?