摘要: # coding = utf-8import sqlite3class Student(object): def __init__(self, id, name, age, sex, phone): self.id = id self... 阅读全文
posted @ 2018-11-15 22:33 可不可与给我你的微笑 阅读(390) 评论(0) 推荐(0) 编辑
摘要: # coding: utf-8import sqlite3# 导入数据库def connect_sql(): connect = sqlite3.connect("test_sqlite.db") cursor = connect.cursor() ... 阅读全文
posted @ 2018-11-15 22:23 可不可与给我你的微笑 阅读(2733) 评论(0) 推荐(0) 编辑