Tell me if it is possible to compile (to make the code work faster) projects. And if so, is it possible to do this through PyCharm?
I really don’t want to waste time rewriting code in C++, but Python works unacceptably slow (time data is generated and the generation speed is about 1 second in 1 minute, but I would like an order of magnitude faster)
Answer 1
You can take a look at Cython . PyCharm is unlikely to be able to help you.
Also, to speed up Python you can use an alternative interpreter – PyPy .