我正试图使用 Python 将数据插入 MySQL 。 在数据库插入 < strong > 、 _、 和 < strong > 时有一个错误 :-) 。
TypeError: not all arguments converted during string formatting
在代码中:
emoticons = C:/Users/user/Desktop/emoticons.txt
csv_data = csv.reader(open(emoticons, rb ))
count = 0
for row in csv_data:
count = count + 1
c.execute("INSERT INTO Emoticons (Emotions) VALUES (%s)", row)
db.close()
我错过了密码里的东西吗 有什么建议吗