Python3.7连接MySQL8

import pymysql

mydb=pymysql.connect(
    host='localhost',
    user='root',
    passwd='',
)
mydb.close()