import py_compile py_compile.compile('yourFile.py') # the compiled file will be saved as yourfile.pyc in a __pycache__ folder, which will be created the same folder as yourfile.py
Here is what the above code is Doing:
1. It imports the py_compile module.
2. It calls the compile() function from the py_compile module.
3. The compile() function takes the name of the Python file to compile as its first argument.
4. The compiled file will be saved as yourfile.pyc in a __pycache__ folder, which will be created the same folder as yourfile.py