Metadata-Version: 2.4
Name: download-premium-calculator
Version: 0.0.1
Summary: A simple arithmetic and statistics calculator library
Home-page: 
Author: krish
License: MIT
Keywords: calculator math statistics python
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: summary

PremiumCalculator Library

A simple Python library for arithmetic and basic statistics operations.

---

Folder Name:
PremiumCalculator

---

Features:

Arithmetic Operations:

- Addition
- Subtraction
- Multiplication
- Division
- Modulus
- Power

Statistics Operations:

- Mean
- Median
- Mode
- Variance
- Standard Deviation
- Min / Max
- Range

---

Usage:

Import the functions in your Python file:

from PremiumCalculator import \*

Example:

print(add_numbers(5, 3))

nums = [1, 2, 2, 3]
print(mean_numbers(nums))

---

Notes:

- Supports only int and float values
- Raises errors for invalid input
- Division by zero is not allowed

---

Author:
Krish


Change Log
==========

0.0.1 (25/04/2026)
----------
-First Release
