0 votes
in Python by
What are .pyc files used for?

1 Answer

0 votes
by
.pyc files contain Python bytecode, same way as .class files in Java. Python is still considered an interpreted language, though, since this compilation phase occurs when you run the program, while in Java these a clearly separated.
...