我们知道Python3.x引入了新的字符串格式化语法。不同于Python2.x的
代码如下:
"%s %s "%(a,b)
代码如下:
"{0} {1}".format(a,b)
代码如下:
cursor.execute(sql,param)
代码如下:
cursor.execute('insert into test values(%s,%s,%s)',param)
代码如下:
【1064】You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near'(%s,%s,%s)'at line……(以下省略)。
代码如下:
cursor.execute('insert into test values({0},{1},{2})',param)