Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 211 Bytes

File metadata and controls

15 lines (11 loc) · 211 Bytes

mymath

A simple Python package for basic math operations.

Functions:

  • add(a, b)
  • subtract(a, b)
  • multiply(a, b)
  • divide(a, b)

Usage

from myMath import add
print(add(2, 3))  # 5