「python 2.7のユニコードの使い方」を何度も読み、このフォーラムを徹底的に閲覧しましたが、見つけて試したものは何もプログラムを機能させませんでした。
これは、dictionary.com のエントリを一連の例文と単語と発音のペアに変換することになっています。しかし、最初は失敗します。IPA (つまり Unicode) 文字は、入力直後に意味不明な文字に変換されます。
# -*- coding: utf-8 -*-
""" HERE'S HOW A TYPICAL DICTIONARY.COM ENTRY LOOKS LIKE
white·wash
/ˈʰwaɪtˌwɒʃ, -ˌwɔʃ, ˈwaɪt-/ Show Spelled
noun
1.
a composition, as of lime and water or of whiting, size, and water, used for whitening walls, woodwork, etc.
2.
anything, as deceptive words or actions, used to cover up or gloss over faults, errors, or wrongdoings, or absolve a wrongdoer from blame.
3.
Sports Informal. a defeat in which the loser fails to score.
verb (used with object)
4.
to whiten with whitewash.
5.
to cover up or gloss over the faults or errors of; absolve from blame.
6.
Sports Informal. to defeat by keeping the opponent from scoring: The home team whitewashed the visitors eight to nothing.
"""
def wdefinp(): #word definition input
wdef=u''
emptylines=0
print '\nREADY\n\n'
while True:
cinp=raw_input() #current input line
if cinp=='':
emptylines += 1
if emptylines >= 3: #breaking out by 3xEnter
wdef=wdef[:-2]
return wdef
else:
emptylines = 0
wdef=wdef + '\n' + cinp
return wdef
wdef=wdefinp()
print wdef.decode('utf-8')
この結果: white·wash /Ë�Ę°waÉŞtËŚwÉ'Ę�, -ËŚwÉ"Ę�, Ë�waÉŞt-/ Show Spelled ...
どんな助けでも大歓迎です。