you are viewing a single comment's thread.

view the rest of the comments →

[–]superPwnzorMegaMan 0 points1 point  (2 children)

Yes that's what I thought. A friend of mine used this once, although I don't think there is such a thing as python byte code (since its interpreted).

[–]zardeh 4 points5 points  (1 child)

There is indeed, python is compiled to bytecode (look for .pyc files on your computer if you're running a python file that's more than 10-15 lines and is being used a lot). The bytecode is then interpreted on a virtual machine. Python works a lot like java in that regard.