自定义刷题工具-python实现

背景:

最近想要刷题,虽然目前有很多成熟的软件,网站。但是能够支持自定义的导入题库的非常少,或者是要么让你开会员,而直接百度题库的话,正确答案就摆在你一眼能看见的地方,看的时候总觉得自己也会,然后考的时候又啥都不记得了,然后最重要的一点是自定义导入,否则现如今成熟的牛客力扣啥才是最优的选择

自定义题库要素A

这个是百度的时候发现的
1 题号
2 问题题干
3 类型(单选,多选,文本)
4 选项(单选多选的选项,实际上判断题也可以归为2个选项的单选题)

5 参考答案

6 答案详解,开发完成后加入的,感觉光是答案不太好

7 上次答案记录。后续加入的,你连上次做的对的错的都不知道的话,刷题的意义性何在?

8 标签:也是后续加上的,本来是打算数据多了做一个条件查询的,但是发现python的查询太丑了,可能是我打开方式不对,因此我想了一个办法就是把问题标签化,你可以通过标签来做筛选,因此你可以只看某部分标签内的题

代码:

代码结构如下:注意python的名称好像不太重要可以随意改
 

ExerciseDemo1.py
questions.json
QuestionsJsonGenerator.py
题库文件夹 里面可以放你自己的各种文档,当然你可以放在一个xlsx文件里面也行,但是数据多了好不好用我就不负责了

ExerciseDemo1.py
 

import json
import tkinter as tk
from tkinter import ttk# 从JSON文件中加载题目
with open('questions.json', 'r', encoding='utf-8') as file:data = json.load(file)questions = data['questions']# 获取所有标签并生成唯一标签列表
tags_set = set()
for question in questions:tags_set.update(question['tags'])
tags_list = list(tags_set)# 创建主窗口
root = tk.Tk()
root.title("刷题软件")
root.geometry('1200x800')current_question_index = 0# 切换题目
def load_question(index):global current_question_indexcurrent_question_index = indexquestion_data = questions[current_question_index]question_label.config(text=f"{question_data['id']}. {question_data['question']}")# 清空当前答案框架for widget in answer_frame.winfo_children():widget.destroy()global answer_varanswer_var = Noneif question_data["type"] == "single":answer_var = tk.StringVar()for key, value in question_data["options"].items():rb = tk.Radiobutton(answer_frame, text=value, variable=answer_var, value=key)rb.pack(anchor='w')elif question_data["type"] == "multiple":answer_var = {}for key, value in question_data["options"].items():var = tk.BooleanVar()answer_var[key] = varcb = tk.Checkbutton(answer_frame, text=value, variable=var)cb.pack(anchor='w')elif question_data["type"] == "text":answer_var = tk.Text(answer_frame, height=5, wrap="word")answer_var.pack(fill='both', expand=True)# 清空答案显示区域并滚动至顶部answer_display.delete("1.0", tk.END)answer_display.yview_moveto(0)# 显示答案
def show_answer():question = questions[current_question_index]answer = question['answer']explanation = question['explanation']last_answer = question.get('lastAnswer', None)answer_display.delete('1.0', tk.END)if last_answer:answer_display.insert(tk.END, f"答案:\n{answer}\n\n你的上次答案:\n{last_answer}\n\n解释:\n{explanation}")else:answer_display.insert(tk.END, f"答案:\n{answer}\n\n解释:\n{explanation}")answer_display.yview_moveto(0)# 隐藏答案
def hide_answer():answer_display.delete('1.0', tk.END)# 保存答案
def save_answer():question = questions[current_question_index]if question["type"] == "single":question['lastAnswer'] = answer_var.get()elif question["type"] == "multiple":question['lastAnswer'] = [key for key, var in answer_var.items() if var.get()]elif question["type"] == "text":question['lastAnswer'] = answer_var.get("1.0", tk.END).strip()with open('questions.json', 'w', encoding='utf-8') as file:json.dump({'questions': questions}, file, indent=2, ensure_ascii=False)# 更新标题下拉列表
def update_question_selector(tag=None):if tag:filtered_titles = [f"{q['id']}. {q['question']}" for q in questions if tag in q['tags']]else:filtered_titles = [f"{q['id']}. {q['question']}" for q in questions]question_selector['values'] = filtered_titlesif filtered_titles:question_selector.current(0)load_question(0)# 清除标签选择
def clear_tag_selection():tag_selector.set('')update_question_selector()# 标签下拉列表选项
tag_frame = tk.Frame(root)
tag_frame.pack(pady=10, anchor='w')tag_selector = ttk.Combobox(tag_frame, values=tags_list, width=50, state='readonly')
tag_selector.grid(row=0, column=0, padx=5)
tag_selector.bind("<<ComboboxSelected>>", lambda event: update_question_selector(tag_selector.get()))clear_tag_button = tk.Button(tag_frame, text="清除标签选择", command=clear_tag_selection)
clear_tag_button.grid(row=0, column=1, padx=5)# 标题下拉列表选项
question_titles = [f"{q['id']}. {q['question']}" for q in questions]
question_selector = ttk.Combobox(root, values=question_titles, width=100, state='readonly')
question_selector.current(0)
question_selector.pack(pady=10, anchor='w', fill=tk.X)
question_selector.bind("<<ComboboxSelected>>", lambda event: load_question(question_selector.current()))# 功能按钮
button_frame = tk.Frame(root)
button_frame.pack(pady=10, anchor='w')previous_button = tk.Button(button_frame, text="上一题", command=lambda: load_question((current_question_index - 1) % len(questions)))
previous_button.grid(row=0, column=0, padx=5)next_button = tk.Button(button_frame, text="下一题", command=lambda: load_question((current_question_index + 1) % len(questions)))
next_button.grid(row=0, column=1, padx=5)# 题干
question_label = tk.Label(root, text="", wraplength=600, justify="left")
question_label.pack(pady=10, anchor='w')# 答案框架
answer_frame = tk.Frame(root)
answer_frame.pack(pady=10, fill='both', expand=True, anchor='w')# 显示答案和隐藏答案按钮框架
show_hide_button_frame = tk.Frame(root)
show_hide_button_frame.pack(pady=5, anchor='w')save_answer_button = tk.Button(show_hide_button_frame, text="保存答案", command=save_answer)
save_answer_button.grid(row=0, column=0, padx=5)show_answer_button = tk.Button(show_hide_button_frame, text="显示答案", command=show_answer)
show_answer_button.grid(row=0, column=1, padx=5)hide_answer_button = tk.Button(show_hide_button_frame, text="隐藏答案", command=hide_answer)
hide_answer_button.grid(row=0, column=2, padx=5)# 显示答案区域框架
answer_display_frame = tk.Frame(root)
answer_display_frame.pack(pady=10, fill='both', expand=True)answer_display_scroll = tk.Scrollbar(answer_display_frame)
answer_display_scroll.pack(side=tk.RIGHT, fill=tk.Y)answer_display = tk.Text(answer_display_frame, height=4, yscrollcommand=answer_display_scroll.set)
answer_display.pack(fill='both', expand=True)answer_display_scroll.config(command=answer_display.yview)# 初始化加载第一题
load_question(0)# 运行主循环
root.mainloop()

questions.json

这个就不举例了,实际上是通过xlsx文件执行QuestionsJsonGenerator自动生成的。



QuestionsJsonGenerator.py
 

import json
import openpyxl
import os
import reclass QuestionsJsonGenerator:def __init__(self, excel_file, json_file):self.excel_file = excel_fileself.json_file = json_fileself.questions = []def read_excel(self):workbook = openpyxl.load_workbook(self.excel_file)sheet = workbook.activerows = list(sheet.iter_rows(values_only=True))headers = rows[0]for row in rows[1:]:question_data = {}for header, value in zip(headers, row):if header == "标签":question_data['tags'] = [tag for tag in re.split(r'[,,]', value) if tag.strip()]elif header == "类型":question_data['type'] = valueelif header == "问题":question_data['question'] = valueelif header == "答案":if question_data['type'] == "multiple":question_data['answer'] = re.split(r'[,,]', value)else:question_data['answer'] = valueelif header == "答案解释":question_data['explanation'] = value if value else ""elif header == "选项":# 使用不同的分隔符对选项进行分割raw_options = re.split(r'[;\n:;]+', value)# 去除空白项options = [opt.strip() for opt in raw_options if opt.strip()]question_data['options'] = {}for opt in options:# 允许使用 : 或 . 作为键值分隔符key_value = re.split(r'[:.]', opt)if len(key_value) == 2:key = key_value[0].strip()val = key_value[1].strip()question_data['options'][key] = val# 只有在处理完一行所有数据后才添加到 questions 列表中self.questions.append(question_data)# Add IDs to each questionfor i, question in enumerate(self.questions):question['id'] = i + 1def write_json(self):if os.path.exists(self.json_file):with open(self.json_file, 'r', encoding='utf-8') as file:data = json.load(file)else:data = {'questions': []}data['questions'] = self.questionswith open(self.json_file, 'w', encoding='utf-8') as file:json.dump(data, file, indent=2, ensure_ascii=False)def generate_json(self):self.read_excel()self.write_json()# 使用示例
excel_file = '题库/牛客-java.xlsx'  # 替换为你的Excel文件路径
json_file = 'questions.json'  # 替换为你的JSON文件路径generator = QuestionsJsonGenerator(excel_file, json_file)
generator.generate_json()
 

导入模板,数据准备演示

图例:

说明:

看图,自己最好设置一个模板,还有觉得我的这种切分不够你使用习惯的自己去改代码就行,下面说明在哪改吧

标签切分

if header == "标签":question_data['tags'] = [tag for tag in re.split(r'[,,]', value) if tag.strip()]

答案切分

elif header == "答案":if question_data['type'] == "multiple":question_data['answer'] = re.split(r'[,,]', value)else:question_data['answer'] = value

选项切分

elif header == "选项":# 使用不同的分隔符对选项进行分割raw_options = re.split(r'[;\n:;]+', value)# 去除空白项options = [opt.strip() for opt in raw_options if opt.strip()]question_data['options'] = {}for opt in options:# 允许使用 : 或 . 作为键值分隔符key_value = re.split(r'[:.]', opt)if len(key_value) == 2:key = key_value[0].strip()val = key_value[1].strip()question_data['options'][key] = val

执行QuestionsJsonGenerator.py

执行成功后检查一个json有没有问题,这里用我这里生成的截图做参考

主窗口程序演示

运行ExerciseDemo1.py

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/869374.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Gymnasium 借游戏来学习人工智能

既然有了免费的linux系统GPU&#xff0c;干脆演示一下使用drivecolab套件来训练模型。 !apt-get install -y build-essential swig !pip install box2d-py !pip install gymnasium[all] !pip install gymnasium[atari] gymnasium[accept-rom-license] !pip install stable_bas…

dify/api/models/task.py文件中的数据表

源码位置&#xff1a;dify/api/models/task.py CeleryTask 表结构 字段英文名数据类型字段中文名字备注idIntegerID自增主键&#xff0c;任务ID序列task_idString任务ID唯一任务标识statusString状态默认值为 PENDINGresultPickleType结果可为空date_doneDateTime完成日期默认…

OJ-0709

示例&#xff1a; 输入&#xff1a; 5 100 10 10 20 30 40 50 3 4 5 6 10 20 30 20 40 30 输出&#xff1a; 0 30 0 40 0import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner new Scanner(System.in);int number scanner…

项目收获总结--Redis的知识收获

一、概述 最近几天公司项目开发上线完成&#xff0c;做个收获总结吧~ 今天记录Redis的收获和提升。 二、Redis异步队列 Redis做异步队列一般使用 list 结构作为队列&#xff0c;rpush 生产消息&#xff0c;lpop 消费消息。当 lpop 没有消息的时候&#xff0c;要适当sleep再…

2024.7.9总结(找对象的逻辑)

今天口语表达训练5分钟&#xff0c;阅读1h,然后电脑坏了&#xff0c;学python计划估计是完不成了。 然后&#xff0c;今天想聊聊毕业后要不开的两件事&#xff0c;工作和找对象。事业是前期最应该关注和重视的&#xff0c;但找对象结婚关乎后半生的幸福&#xff0c;也不能不做…

SSL证书到期自动巡检脚本-推送钉钉告警

1. 编写SSL证书巡检脚本 cat /hao/batch_check_ssl_expire.sh #!/bin/bash# 域名列表文件绝对路径 domains_file"/hao/domains.txt"#钉钉webhook webhook_url"https://oapi.dingtalk.com/robot/send?access_token99999999999999999999999999999999999999999…

深度学习pytorch多机多卡网络配置桥接方法

1 安装pdsh&#xff08;Parallel Distributed Shell&#xff09; sudo apt install pdsh sudo -s # 切换超级用户身份 …

oracle查询出表中某几个字段值不唯一的数据

假设有一张学生表&#xff0c;建表语句如下&#xff1a; --学生 student表 create table student( sno varchar2(10) primary key, sname varchar2(20), sage number(2), ssex varchar2(5), birthday date );现计划创建唯一索引&#xff08;sno&#xff0c;sname&#xff09;&…

决策树构建精要:算法步骤与实现细节

决策树构建&#xff1a;算法流程与步骤 决策树是一种强大的机器学习算法&#xff0c;用于分类和回归问题。下面将详细介绍决策树的构建流程和具体步骤&#xff0c;帮助您理解并实现决策树算法。 1. 算法流程 决策树的构建流程可以概括为以下几个主要步骤&#xff1a; 特征选…

如何查看Impala集群的状态和日志

查看Impala集群状态 使用Impala Shell 登录到任何集群节点&#xff0c;通过Impala Shell可以查询集群状态。执行命令 invalidate metadata; 可以强制Impala重新加载元数据&#xff0c;有助于识别任何元数据同步问题。此外&#xff0c;可以运行简单的SQL查询&#xff08;如 SEL…

MATLAB备赛资源库(1)建模指令

一、介绍 MATLAB&#xff08;Matrix Laboratory&#xff09;是一种强大的数值计算环境和编程语言&#xff0c;特别设计用于科学计算、数据分析和工程应用。 二、使用 数学建模使用MATLAB通常涉及以下几个方面&#xff1a; 1. **数据处理与预处理**&#xff1a; - 导入和处理…

Redis 中的跳表(Skip List)

Redis 中的跳表&#xff08;Skip List&#xff09;是一种用于实现有序集合&#xff08;Sorted Set&#xff09;的数据结构。跳表是一种非平衡的、概率性的数据结构&#xff0c;它提供了与平衡树类似的性能&#xff0c;但在实现上更简单&#xff0c;通常更容易理解和编码。跳表的…

模型计算量 MAC/FLOPs 的手动统计方法

文章目录 简介背景为什么理解神经网络中的MAC和FLOPs很重要&#xff1f;资源效率内存效率能耗功耗效率 模型优化性能基准研究与发展 FLOPs 和 MACs 定义1. 全连接层 FLOPs 计算步骤 1&#xff1a;识别层参数步骤 2&#xff1a;计算 FLOPs 和 MACs步骤 3&#xff1a;总结结果使用…

行列视(RCV)是否支持批量共享和自定义共享设置,以提高共享效率?

行列视&#xff08;RCV&#xff09;确实支持批量共享和自定义共享设置&#xff0c;以提高共享效率。以下是根据参考文章信息&#xff0c;对RCV在共享功能方面的详细说明&#xff1a; 1. 批量共享&#xff1a; - RCV系统支持大规模数据或报表的共享&#xff0c;这意味着用户可以…

Echarts实现github提交记录图

最近改个人博客&#xff0c;看了github的提交记录&#xff0c;是真觉得好看。可以移植到自己的博客上做文章统计 效果如下 代码如下 <!DOCTYPE html> <html lang"en" style"height: 100%"><head><meta charset"utf-8"> …

240709_昇思学习打卡-Day21-文本解码原理--以MindNLP为例

240709_昇思学习打卡-Day21-文本解码原理–以MindNLP为例 今天做根据前文预测下一个单词&#xff0c;仅作简单记录及注释。 一个文本序列的概率分布可以分解为每个词基于其上文的条件概率的乘积 &#x1d44a;_0:初始上下文单词序列&#x1d447;: 时间步当生成EOS标签时&a…

企业级网关设计

tips&#xff1a;本文完全来源于卢泽龙&#xff01;&#xff01;&#xff01; 一、Gateway概述 1.1设计目标 1.2gateway基本功能 中文文档参考&#xff1a;https://cloud.tencent.com/developer/article/1403887?from15425 三大核心&#xff1a; 二、引入依赖和yaml配置…

Interpretability 与 Explainability机器学习

在机器学习的范畴中&#xff0c;“Interpretability”&#xff08;可解释性&#xff09;和“Explainability”&#xff08;可解释性&#xff09;尽管在含义上有重叠部分&#xff0c;但仍存在一些微妙的差异和重点的不同。 “Interpretability”主要强调模型自身的结构和运作方式…

如何制定python编码规范,符合PEP 8

嗨&#xff0c;我是兰若&#xff0c;今天在检查代码的时候&#xff0c;发现了一个很严重但是大家平时却不重视的问题&#xff0c;就是编码格式规范&#xff0c;很多人在平时写python脚本的时候&#xff0c; 总是胡乱发挥&#xff0c;想怎么命名就怎么命名&#xff0c;&#xf…

如何在 PostgreSQL 中确保数据的异地备份安全性?

文章目录 一、备份策略1. 全量备份与增量备份相结合2. 定义合理的备份周期3. 选择合适的备份时间 二、加密备份数据1. 使用 PostgreSQL 的内置加密功能2. 使用第三方加密工具 三、安全的传输方式1. SSH 隧道2. SFTP3. VPN 连接 四、异地存储的安全性1. 云存储服务2. 内部存储设…