You don't have a unicode string, but a UTF-8 list of bytes (which are what strings are in Python 2.x). Try myString = myString.replace("\xc2\xa0", " ").
確定! 回上一頁