Does the Python 3 interpreter have a JIT feature?

前端 未结 7 1477
遥遥无期
遥遥无期 2020-12-29 19:04

I found that when I ask something more to Python, python doesn\'t use my machine resource at 100% and it\'s not really fast, it\'s fast if compared to many other interpreted

7条回答
  •  北荒
    北荒 (楼主)
    2020-12-29 19:55

    If you are looking for speed improvements in a block of code, then you may want to have a look to rpythonic, that compiles down to C using pypy. It uses a decorator that converts it in a JIT for Python.

提交回复
热议问题