API EXPOSED BY THE MODULE

prashpyutil Library is just for the Utility method used for.

copyright:
  1. 2017 by Prashant Farkya.
license:

MIT, see LICENSE for more details.

This part of documentation will have API function exposed by the module.

Main function

All the util function directly exposed as it is.

prashpyutil.sumoftwo(a, b)[source]

This is an sumoftwo function to add two number

Parameters:
  • a (int) – first number to add
  • b (int) – first number to add
Returns:

return addition of the integer

Return type:

int

Example:
>>> r = sumoftwo(2, 3)
>>> r
5