时间:2021-07-01 10:21:17 帮助过:34人阅读
数据库举例
1 import sqlite3 2 conn=sqlite3.connect("example.db")#创建数据库 3 c=conn.cursor()#创建一个数据库的游标 4 #创建表 5 c.execute("create table students(name,sex,age,grade)") #第一次执行就创建表,继续执行会报错 6 #插入数据 7 c.execute("insert into students values(‘大熊‘,‘boy‘,18,‘17级‘)") 8 c.execute("insert into students values(‘康复‘,‘boy‘,16,‘17级‘)") 9 for row in c.execute("select * from students order by age "): 10 print(row) 11 print(‘---------------------‘) 12 #删除数据 13 # c.execute("delete from students where name=‘康复‘") 14 #数据可修改 15 c.execute("update students set name=‘静香‘ where name=‘大熊‘") 16 for row in c.execute("select * from students order by age "): 17 print(row) 18 conn.commit()#数据提交到数据库
练习1:#火车票查询的Python代码 ,网上是保存excel表格 自己尝试修改成用数据库
2.爬虫的程序,execl表格, 改成用数据库存。
Python与sqlit数据库--简单介绍
标签:数据 pre import commit 创建数据库 col 数据库恢复 python 程序