This is a project that simulates a calculator. Each method requires two arguments (float and/or int).
addition.py's perform_operation() adds the two arguments together.
subtraction.py's perform_operation() subtracts the second argument from the first argument.
multiplication.py's perform_operation() multiplies the first argument by the second argument.
division.py's perform_operation() divides the first argument by the second argument.