Why is IronPython faster than the Official Python Interpreter

后端 未结 5 2011
清歌不尽
清歌不尽 2020-12-29 10:05

According to this:

http://www.codeplex.com/IronPython/Wiki/View.aspx?title=IP20VsCPy25Perf&referringTitle=IronPython%20Performance

IronPython (Python fo

5条回答
  •  长发绾君心
    2020-12-29 11:05

    Python code doesn't get compiled to C, Python itself is written in C and interprets Python bytecode. CIL gets compiled to machine code, which is why you see better performance when using IronPython.

提交回复
热议问题