You will get a split second when it took Python runtime to parse and compile the source into bytecode, which only happens on first run / import.
You will lose portability.
See here .
A program does not start faster when it is read from '.pyc or' .pyo than when it is read from a .py file; the only thing faster about .pyc or .pyo files is the speed at which they load.
source share