web-dev-qa-db-ja.com

Python2.7の文字列内の文字のようなユニコード\ u2026を削除する

私はこのようなpython2.7の文字列を持っています、

 This is some \u03c0 text that has to be cleaned\u2026! it\u0027s annoying!

どうすればこれに変換できますか?

This is some text that has to be cleaned! its annoying!

Python 2.x

>>> s
'This is some \\u03c0 text that has to be cleaned\\u2026! it\\u0027s annoying!'
>>> print(s.decode('unicode_escape').encode('ascii','ignore'))
This is some  text that has to be cleaned! it's annoying!

Python 3.x

>>> s = 'This is some \u03c0 text that has to be cleaned\u2026! it\u0027s annoying!'
>>> s.encode('ascii', 'ignore')
b"This is some  text that has to be cleaned! it's annoying!"
82
Burhan Khalid