My issue
this question’s solution is not running please go through this
My code
# main.py
import mathOperations
# def main():
a = 10
b = 5
print(mathOperations.add(a,b))
print(mathOperations.subtract(a,b))
print(mathOperations.multiply(a,b))
print(mathOperations.divide(a,b))
if __name__ == "__main__":
()
Learning course: Advanced Python
Problem Link: How to use modules in Python in Advanced Python