To create byte code file corresponding .py file in terminal We use command like: python -m py_compile File1.py
For python3.2 and later version it creates the file like: pycache/File1_cpython32.pyc
Can we generate this file like File1.pyc , which don't include version in it, while running the the above command in terminal??