Python program is processed at runtime by what
Answers
Answered by
0
Answer:
Python first compiles your source code (.py file) into a format known as byte code . Compilation is simply a translation step, and byte code is a lower-level, and platform-independent, representation of your source code. Compiled code is usually stored in .pyc files , and is regenerated when the source is updated, or when otherwise necessary.
Hope u like it.
Similar questions