0

_mysql_exceptions.Warning:不正确的字符串值:'\xF0\x9F\x92\x96 \xF0...' 用于第 1 行的列 'title'

s = "这是我的字符串。Über! 0\x9F\x92\x96 \xF0"

我怎样才能0\x9F\x92\x96 \xF0从这个字符串中只删除这个值->?(或编码这个)

编辑:

>>> s = "So simple  google.com"
>>> s
'So simple \xf0\x9f\x98\x81 google.com'
>>> s.decode('utf-8')
u'So simple \U0001f601 google.com'
>>> print s.decode('utf-8')
So simple  google.com
>>> 
4

0 回答 0