帮我用python写一个连接本地的MySQL数据库,数据库名称为mydb、
时间: 2023-05-12 22:04:14 浏览: 103
python实现连接MySQL数据库
用户名为root,密码为123456的代码。
当然可以,以下是Python连接本地MySQL数据库的代码:
```python
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="root",
password="123456",
database="mydb"
)
print(mydb)
```
这段代码使用了mysql.connector模块来连接本地MySQL数据库,其中host参数指定了数据库的地址,user参数指定了用户名,password参数指定了密码,database参数指定了要连接的数据库名称。最后,我们打印出mydb对象,以验证是否成功连接到数据库。
阅读全文