Metadata-Version: 2.4
Name: easy_math_ms
Version: 0.1.0
Summary: A packages for a mathmatical nations in a data-structure
Author-email: Mohammad Sadeghi <mohammadsadeghi1082@gmail.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENCE
Dynamic: license-file

# easy_math

easy_math - easy_math Expression Evaluator  
*A lightweight Python package for evaluating mathematical expressions in both prefix and postfix (RPN) easy_math with automatic detection.*

---

## Features
- 🔍 Auto-Detection: Automatically identifies prefix or postfix easy_math
- ⚡ Fast Evaluation: Efficient stack-based algorithm
- ➕ Operators Supported: `+`, `-`, `*`, `/` (integer division)
- 🐍 Pure Python: No external dependencies

---

## Installation
```bash
pip install easy_math_ms
```

## USAGE

```bash
from easy_math import smartEval

result1 = smartEval(["2", "3", "+", "4", "*"])

result2 = smartEval(["*", "+", "2", "3", "4"])

print(f"Results: {result1}, {result2}")

```
