我从一个 mySQL 数据库中收到了一个元组列表。
当我尝试打印一个项目时,结果如下:
Далоев ÐлекÑандр
<class 'str'>
这是 cp1251,根据https://2cyr.com/decode/?lang=ru
我尝试了很多.encode().decode()
with errors='ignore'
params 的变体,但没有任何成功。有任何想法吗?
UPD
我收到了我的元组列表mysql-connector-python
。
z
是列表。上面的结果来自z[0][0]
def select_name(add):
z = []
try:
dbconfig = read_db_config()
conn = MySQLConnection(**dbconfig)
cursor = conn.cursor()
cursor.execute("select name from phone_add where ph_add = " + str(add) + ";")
row = cursor.fetchone()
while row is not None:
z.append(row)
row = cursor.fetchone()
return z
except Error as e:
print(e)
finally:
cursor.close()
conn.close()
Upd2 这是一个奇怪的解码器。希望它会帮助smb。
我意识到问题在于插入我的数据库。会在这里挖。
q = string
codings = ['latin1', 'utf8', 'cp1251', 'unicode-escape', 'cp866']
exceptions = ['ignore', 'strict', 'xmlcharrefreplace', 'backslashreplace']
for i in codings:
for j in codings:
for z in exceptions:
for p in exceptions:
try:
print(q.encode(i, errors=z).decode(j, errors=p) + '<------' + i + ' ' + j + ' ' + z + ' ' + p)
except:
pass