Python を使用して MySQL にデータを挿入しようとしています。,_, , :-)をデータベースに挿入するとエラーが発生します。
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()
コードで何かを見逃しましたか?何か提案はありますか?