python3 利用pysql将sql取出数据转为字典列表类型
直接上代码def sqlToJson(cursor,sql,key): cursor.execute(sql) data=cursor.fetchall() jsonList=[] for i in data: jsonList.append(dict(zip(key,i))) return jsonListcusrsor是pymysql的Cursor对象,sql为sql语句类型为字符串,key为要输出的字典的key值列表...