1 Star 0 Fork 0

张晓瑛/hongruan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
person.py 545 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoxing 提交于 2024-07-01 17:42 . 练习题 person.py
# 连接数据库
import pymysql
db=pymysql.connect(
host='localhost',
port=3306,
database='test',
user='root',
password='',
charset='utf8'
)
# # 创建游标
cursor = db.cursor()
for i in range(0, 10):
sql = "insert into person values(%s,%s,%s,%s)"
print("第", i + 1, "次输入")
param = [input("请输入姓名:"), input("请输入年龄:"), input("请输入性别:"), input("请输入身高:")]
cursor.execute(sql, param)
db.commit()
# 关闭
cursor.close()
db.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhangxiaoying_soft/hongruan.git
git@gitee.com:zhangxiaoying_soft/hongruan.git
zhangxiaoying_soft
hongruan
hongruan
master

搜索帮助