From d1b269ffc4c209693cf71f4c8fda851c2d128df0 Mon Sep 17 00:00:00 2001 From: pcafzw7pf <3033465407@qq.com> Date: Fri, 31 May 2024 15:05:21 +0800 Subject: [PATCH] Delete '111/chat2.py' --- 111/chat2.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 111/chat2.py diff --git a/111/chat2.py b/111/chat2.py deleted file mode 100644 index 8d547e5..0000000 --- a/111/chat2.py +++ /dev/null @@ -1,24 +0,0 @@ -import tkinter as tk - - -def run(): - # 创建新的tk界面 - history_window = tk.Tk() - history_window.title("历史对话") - - # 读取历史对话内容 - dialogue_lines = [] - with open("dialogue.txt", "r") as file: - dialogue_lines = file.readlines() - - # 显示历史对话内容 - message_history = tk.Text(history_window, width=60, height=20, wrap="word") - message_history.pack(pady=10) - for line in dialogue_lines: - message_history.insert(tk.END, line) - - history_window.mainloop() - - -if __name__ == "__main__": - run() \ No newline at end of file