centos如何用python调用mysql
1、执行命令“cd /home”进入服务器根目录home;

2、执行命令“pip3 install pymysql”安装python的mysql驱动;

3、执行命令“mysql -uroot -p”输入密码登陆数据库;

4、依次执行命令“create database depart;”、“use depart;”、“set names utf8;”创建数据库depart并设置utf-8编码;

5、执行命令“quit”退出数据库登陆;
6、执行命令“touch pymsqls.py”创建python脚本文件;

7、执行命令“vim pymsqls.py”编辑python脚本文件,并输入以下内容:
#usr/bin/python
#coding:utf-8
import pymysql
#创建连接
Connection = pymysql.connect(database='depart', host='192.168.6.3', user='root', password='123456')
cursor = Connection.cursor()
#创建存储学生的表student
sql_create_table = '''
create table student
(
id int (10),
name varchar (50),
score int(2)
)
'''
#执行sql语句,创建student表
cursor.execute(sql_create_table)
sql = "INSERT INTO student VALUES (%s,%s,%s);"
args = (1,'孙悟空',128)
cursor.execute(sql,args)
#提交
Connection.commit()
#断开链接
Connection.close()
print("Database created successfully!!")
print("Insert data successful! !")

8、执行命令“python3 pymsqls.py”运行python脚本,可以看到脚本运行成功;

9、验证环节:打开桌面客户端Navicat链接数据库能够查看到我们插入的学生信息。至此Centos系统下如何用Python调用操作MySQL的案例演示完成。
