From e242d1c848348859dd819d0de2c9cea60720b290 Mon Sep 17 00:00:00 2001 From: gitee-bot Date: Wed, 5 Aug 2026 13:54:58 +0000 Subject: [PATCH] Add README.md --- README.en.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 106 insertions(+) create mode 100644 README.en.md create mode 100644 README.md diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..001778a --- /dev/null +++ b/README.en.md @@ -0,0 +1,52 @@ +# Basic Knowledge Project + +This project is a Python basic knowledge learning project, hosted on the Gitee platform. + +## Project Introduction + +This project aims to organize and share the fundamental knowledge points of Python programming, suitable for beginners to learn and reference. + +## Environment Requirements + +- Python 3.x +- It is recommended to use a virtual environment for running. + +## Project Structure + +``` +3.1-None/ +└── main.py # Main program file +``` + +## Quick Start + +1. Clone the project locally: +```bash +git clone https://gitee.com/trident_python/basic-knowledge.git +``` + +2. Enter the project directory: +```bash +cd basic-knowledge +``` + +3. Run the main program: +```bash +python 3.1-None/main.py +``` + +## Main Features + +Please refer to the `main.py` file to understand the specific feature implementations. + +## Contribution Guidelines + +Feel free to submit Issues and Pull Requests to improve this project. + +## License + +This project follows an open-source license. + +--- + +**Note:** The current README is created based on the project structure; for specific features and code details, please refer to the source code. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..045f168 --- /dev/null +++ b/README.md @@ -0,0 +1,54 @@ + + +# 基础知识点项目 (Basic Knowledge) + +本项目是一个Python基础知识学习项目,托管在Gitee平台上。 + +## 项目简介 + +本项目旨在整理和分享Python编程的基础知识点,适合初学者学习和参考。 + +## 环境要求 + +- Python 3.x +- 建议使用虚拟环境运行 + +## 项目结构 + +``` +3.1-None/ +└── main.py # 主程序文件 +``` + +## 快速开始 + +1. 克隆项目到本地: +```bash +git clone https://gitee.com/trident_python/basic-knowledge.git +``` + +2. 进入项目目录: +```bash +cd basic-knowledge +``` + +3. 运行主程序: +```bash +python 3.1-None/main.py +``` + +## 主要功能 + +请查看 `main.py` 文件了解具体功能实现。 + +## 贡献指南 + +欢迎提交Issue和Pull Request来改进本项目。 + +## 许可证 + +本项目遵循开源许可证。 + +--- + +**注意:** 当前README基于项目结构创建,具体功能和代码详情请参考源代码。 \ No newline at end of file -- Gitee