Prinzipiell hat dedlfix erst einmal recht.
Allerdings gibt in Python durchaus einen Bytecode, der sogar abgespeichert und ausgeführt werden kann. Der ist aber nicht unabhängig von Python ausführbar - also nicht "standalone", keine exe.
Rezept von dieser Stelle:
python -m compileall .
oder ein Python-Skript:
import py_compile
py_compile.compile("file.py")
oder nach dem Ausführen eines beliebigen Python-Skriptes ("file.py") mal in ./__pycache__/
nachsehen und python2 file.pyc
ausführen.