diff --git a/PyQt6/verson.py b/PyQt6/verson.py
deleted file mode 100644
index f1eb51c..0000000
--- a/PyQt6/verson.py
+++ /dev/null
@@ -1,5 +0,0 @@
-from PyQt6.QtCore import QT_VERSION_STR
-from PyQt6.QtCore import PYQT_VERSION_STR
-
-print(QT_VERSION_STR)
-print(PYQT_VERSION_STR)
\ No newline at end of file
diff --git a/PyQt6/日期和时间/日期.py b/PyQt6/日期和时间/日期.py
deleted file mode 100644
index 6e05c1a..0000000
--- a/PyQt6/日期和时间/日期.py
+++ /dev/null
@@ -1,11 +0,0 @@
-from PyQt6.QtCore import QDate, QTime, QDateTime, Qt
-
-# 获取当前日期
-now=QDate.currentDate()
-print(now.toString(Qt.DateFormat.ISODate))
-print(now.toString(Qt.DateFormat.RFC2822Date))
-print(now)
-
-# 获取当前时间
-datetime=QTime.currentTime()
-print(datetime.toString())
\ No newline at end of file
diff --git a/PyQt6/第一个程序/气泡提示.py b/PyQt6/第一个程序/气泡提示.py
deleted file mode 100644
index 28e6bce..0000000
--- a/PyQt6/第一个程序/气泡提示.py
+++ /dev/null
@@ -1,37 +0,0 @@
-import sys
-from PyQt6.QtWidgets import (QWidget, QToolTip,
- QPushButton, QApplication)
-from PyQt6.QtGui import QFont
-def create_tooltip_widget():
- app = QApplication(sys.argv)
-
- # 创建基本的QWidget
- widget = QWidget()
-
- # 设置提示字体
- QToolTip.setFont(QFont('SansSerif', 10))
-
- # 设置QWidget的提示信息
- widget.setToolTip('This is a QWidget widget')
-
- # 创建QPushButton
- button = QPushButton('Button', widget)
- button.setToolTip('This is a QPushButton widget')
-
- # 设置按钮大小和位置
- button.resize(button.sizeHint())
- button.move(50, 50)
-
- # 设置窗口大小和标题
- widget.setGeometry(300, 300, 300, 200)
- widget.setWindowTitle('Tooltips')
-
- # 显示窗口
- widget.show()
-
- # 运行应用
- sys.exit(app.exec())
-
-
-if __name__ == '__main__':
- create_tooltip_widget()
diff --git a/PyQt6/第一个程序/窗口.py b/PyQt6/第一个程序/窗口.py
deleted file mode 100644
index c2f96f7..0000000
--- a/PyQt6/第一个程序/窗口.py
+++ /dev/null
@@ -1,23 +0,0 @@
-import sys
-from PyQt6.QtWidgets import QApplication, QWidget
-
-
-def main():
- # 创建应用程序对象
- app = QApplication(sys.argv)
- # 创建窗口
- w = QWidget()
- # 设置窗口尺寸
- w.resize(640, 320)
- # 设置窗口位置
- w.move(300, 300)
- # 设置窗口标题
- w.setWindowTitle('Simple')
- # 显示窗口
- w.show()
- # 进入主循环
- sys.exit(app.exec())
-
-
-if __name__ == '__main__':
- main()
diff --git a/Python程序设计课程设计报告模板 2024年.doc b/Python程序设计课程设计报告模板 2024年.doc
index 7565f1e..da73d03 100644
Binary files a/Python程序设计课程设计报告模板 2024年.doc and b/Python程序设计课程设计报告模板 2024年.doc differ