使用python3.8进行MySQL数据库连接的时候,发现出现以下错误
init() takes 1 positional argument but 5 were given
而源代码如下:
import pymysql db = pymysql.connect("localhost", "root", "xxx", "xxxx")
目前的一个解决方案是,为每个参数都指定到对应的参数名上:
db = pymysql.connect(host="localhost", user="root", password="xxx", database="xxxx")
可能是python3.8的函数在使用时需要指定参数名,否则会使用默认的参数模板
from:https://blog.csdn.net/qq_39598271/article/details/112610382
来源 https://www.cnblogs.com/xuan52rock/p/14328625.html