Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 321 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 321 Bytes

Math Utils

A simple Python library that provides basic math operations.

Functions

  • add(a, b): Returns the sum of a and b.
  • subtract(a, b): Returns the difference of a and b.
  • multiply(a, b): Returns the product of a and b.
  • divide(a, b): Returns the quotient of a and b. Raises an error if b is zero.