Say you have the following module in the myproject/
folder:
adder.py
def add(x, y):
return x + y
In another file in the same folder, you write the following code:
main.py
value = add(2, 2)
print(value)
What will IDLE return when you run the module main.py
?
Sorry! There has been an error processing your answer. Please try again.