diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000000000000000000000000000000000000..bbff615b424e23f4ecd1b635029ab59459e9d53e --- /dev/null +++ b/README.en.md @@ -0,0 +1,58 @@ + + +# Python-Parser + +This project is a simple parser implemented in Python for parsing mathematical expressions. + +## Features + +- Parses and evaluates basic mathematical expressions. +- Supports addition, subtraction, multiplication, and division operations. +- Handles parentheses for defining operation precedence. +- Includes support for multi-digit numbers and spaces. + +## Requirements + +- Python 3.x + +## Usage + +1. Clone the repository: + + ```bash + git clone https://github.com/username/python-parser.git + ``` + +2. Navigate to the project directory: + + ```bash + cd python-parser + ``` + +3. Run the parser: + + ```bash + python parser.py + ``` + + You can edit the `parser.py` file to change the input expression. + +## Example + +Input: +```python +expression = "3 + 5 * ( 2 - 4 )" +``` + +Output: +``` +The result of the expression is: -7 +``` + +## Contributing + +Contributions are welcome! If you'd like to contribute, please feel free to submit a pull request. + +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3c1a89db77969a3dda518bb9e9edf2802c069413 --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# Notes 项目说明文档 + +## 项目简介 +这是一个综合性技术笔记仓库,涵盖了 Java、Python、Spring 框架、Web 开发、Shiro 安全框架、工具类等内容。该项目适合开发者查阅技术文档、学习开发知识,以及作为开发实践的参考资料。 + +## 目录结构 +- **Java/JavaSE/System.md**:介绍 Java 中的 `System` 类。 +- **Java/Servlet/JavaWEB.md**:涵盖 Java Web 开发的核心知识点,包括 Servlet 生命周期、url-pattern 配置、JSP 内置对象、请求转发与重定向、Cookie 和 Session 等。 +- **Java/Spring/spring Boot/springboot aop.md**:介绍 Spring Boot 中的 AOP(面向切面编程)。 +- **Java/Spring/springCloud/eureka.md**:搭建 Eureka 注册中心的笔记。 +- **Java/Spring/ssm.md**:SSM(Spring + Spring MVC + MyBatis)整合配置说明。 +- **Java/shiro/Shiro.md**:Apache Shiro 权限框架的使用笔记。 +- **Java/utils/RsaUtil.md**:RSA 加密工具类的实现。 +- **python/pythonQt/qss.md**:Python Qt 样式表(QSS)的使用说明。 + +## 使用说明 +1. **Java 开发者**: + - 可以查阅 `JavaSE`、`Servlet`、`Spring Boot`、`Spring Cloud` 等目录下的文档,学习 Java 核心编程、Web 开发、Spring 框架使用等知识。 + - `Shiro.md` 提供了权限控制的实现方法,适合需要安全框架的项目参考。 + +2. **Python 开发者**: + - `pythonQt/qss.md` 提供了 Python Qt 样式表的使用说明,适合 GUI 开发者查阅。 + +3. **Web 开发者**: + - `JavaWEB.md` 提供了 Servlet 和 JSP 的核心知识点,适合 Java Web 开发者学习。 + +4. **微服务开发者**: + - `eureka.md` 提供了 Eureka 注册中心的搭建方法,适合 Spring Cloud 微服务架构的学习。 + +## 贡献指南 +- 如果您希望为本项目贡献内容,请 Fork 仓库并提交 Pull Request。 +- 添加新的技术笔记时,请确保内容清晰、结构合理,并遵循现有格式。 + +## 许可证 +本项目遵循 MIT 许可证。详情请查看 LICENSE 文件。 + +## 联系方式 +如果您有任何问题或建议,欢迎在 Gitee 上提交 Issue 或联系作者。 + +--- + +本项目由 [Gitee](https://gitee.com) 提供代码托管服务。 \ No newline at end of file