This python script will help you with the basics math calculations: Add, Substract, Multiply and Divide.
Operation: supports the following strings:
- "add" for the addition of the values
- "sub" to substract the values
- "mul" to multiply the values
- "div" to divide the integers.
Args: at least two integers for the operation. Floats are not supported.
Warning: the operations "sub" and "div" require exactly 2 arguments.
The following bugs have been corrected:
- Multiplication can be called up in any format
- Examples have been corrected: only integers are supported and sum is called up with the argument "add".
