API

This is the first section

class math_lib.module_sum_multiply.module_sum_multiply.math_sum_multiply

This is the module for sum and multiply operations.

This module consists of two operations. They are summation and multiplication.

operation_one

name of the operation one

operation_two

name of the operation two

sum_two(a, b)

returns the summation of a and b

multiply_two(x, y)

returns the multiplication of x and y

multiply_two(x: float, y: float) float

This is a function that returns the multiplication of given two values.

Parameters
  • x – some integer a

  • y – some integer b

Returns

multiplication of x and y

sum_two(a: int, b: int) int

This is a function that returns the sum of given two values.

Parameters
  • a – some integer a

  • b – some integer b

Returns

summation of a and b

=== This is the second section

=== This is the third section