I want to make a module but it does not work and I do not know why. I have two .py3 files in the same folder: function_mates and call_function_mates. In function_mates I have functions that perform operations and it works. In calling_funcion_mates I have:
import funcion_mates
funcion_mates.sumar(3,3)
And I get this error: ModuleNotFoundError: No module named 'funcion_mates'
Do I have to configure the Python PATH or something like that?