摘要:
# coding = utf-8import sqlite3class Student(object): def __init__(self, id, name, age, sex, phone): self.id = id self... 阅读全文
摘要:
# coding: utf-8import sqlite3# 导入数据库def connect_sql(): connect = sqlite3.connect("test_sqlite.db") cursor = connect.cursor() ... 阅读全文