My issue
I cant submit the problem
My code
import mathOperations
# Using functions from math_operations module
result_add = mathOperations.add(5, 3)
print("5 + 3 =", result_add)
result_subtract = mathOperations.subtract(10, 4)
print("10 - 4 =", result_subtract)
result_multiply = mathOperations.multiply(6, 7)
print("6 * 7 =", result_multiply)
result_divide = mathOperations.divide(20, 5)
print("20 / 5 =", result_divide)
Learning course: Advanced Python
Problem Link: How to use modules in Python in Advanced Python