I'm quite new to python and to coding in general, so apologize for possible silly questions.
My problem is that I wrote a code in python and since it was extremely slow I have tryed to use cython to speed it up. So at the moment I want to import a module called test_cython.C in a .py file, but using import I'm getting this error (ModuleNotFoundError: No module named 'test_cython')... do you have any suggestion on how to solve this problem? or more in generale how to import a C module in python?