我收到此错误:
TyperError: sequence item 2: expected string, long found
这是我的代码:
import MySQLdb
connection = MySQLdb.connect (host = "localhost", user = "root", passwd = "*****", db = "test")
cursor = connection.cursor ()
cursor.execute ("SELECT * FROM names")
data = cursor.fetchall ()
no = []
no += ["<users>\n"]
for row in data :
no += [" <user id='", row[0], "' name='", row[1], "' blend='", row[2], "'/>\n"]
no += [" <nick color='0x", row[3], "' font='", row[4], "'/>\n"]
no += [" <glow color='0x", row[5], "' alpha='", row[6], "' blurX='", row[7], "' blurY='", row[8], "' strength='", row[9], "' quality='", row[10], "'/>\n"]
no += [" </user>\n", row[11]]
cursor.close ()
connection.close ()
no += ["</users>"]
s = ''.join(no)
file = open('test.xml','w')
file.write(s)