/sample-py-package

Primary LanguagePythonMIT LicenseMIT

Sample Python Package

Installation

Run the following to install :

pip install simple-arithmetic

Usage

from arithmetic import add,multiply,subtract
# Perform arithmetic operations on 2 numbers:
add(2,3)
subtract(5,2)
multiply(2.4,5)