What Is The Difference Between .Py And .Pyc Files In Python?

What Is The Difference Between .Py And .Pyc Files In Python?

Published on October 03 2023

In this tutorial, we will learn What is the difference between .py and .pyc files in Python. This tutorial is part of Python's top 25 most commonly asked interview questions.

.py File

  • The .py files are the Python source code files. 

.pyc File

  • .pyc are the compiled files that are bytecodes generated by the Python compiler. 
  • .pyc files are not created for all the files that you run. It is only created for the files that you import. 

To know about it, please refer to the official documentation website - official website.