摘要: import pymysql # 打开数据库连接db = pymysql.connect("localhost", "root", "root", "test") # 使用cursor()方法获取操作游标cursor = db.cursor() # SQL 查询语句sql = "SELECT * F 阅读全文