代码拉取完成,页面将自动刷新
import sqlite3
import platform
MAC_DB_PATH = "db/word.db"
WIN_DB_PATH = "db\\word.db"
def sql_select_new_concept(no_book, no_lesson_from, no_lesson_to):
platform_system = platform.system()
conn_path = ""
if platform_system == "Darwin":
conn_path = MAC_DB_PATH
else:
conn_path = WIN_DB_PATH
# 打开数据库
conn = sqlite3.connect(conn_path)
# 创建游标
cursor = conn.cursor()
# 查询数据
sql = "SELECT * from new_concept_word_list AS t where t.no_book = ? and t.no_lesson >= ? and t.no_lesson <= ?"
values = cursor.execute(sql, (no_book, no_lesson_from, no_lesson_to))
word_list_temp = []
for i in values:
word_list_temp.append(i)
# 关闭游标
cursor.close()
# 关闭数据库
conn.close()
# 返回数据
return word_list_temp
if __name__ == '__main__':
# 数据准备
word_list = sql_select_new_concept(1, 1, 2)
for data_line in word_list:
print(data_line)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。