You didn’t return nothing in the function, therefore, when you try to print (for example: print(multiply(num1,num2)) it prints the address instead of the actual value, you should return something from the function or just call it without using print
1 Like