I know about .pyc
files (compiled .py
file) and difference between them:
difference between .py and .pyc
My question is:
- Is there difference between runtime of
.py
and.pyc
files or those benchmarks? - And is using
.pyc
instead of.py
reliable ?
Thanks in advance.