_mysql_exceptions.Warning:字符串值不正确:'\ xF0 \ x9F \ x92 \ x96 \ xF0 ...'代表第1行的“标题”列
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
>>>