# Python3.7连接MySQL8 ```python3 import pymysql mydb=pymysql.connect( host='localhost', user='root', passwd='', ) mydb.close() ```