Terry Reedy <tjre...@udel.edu> writes:

> On 5/26/2017 1:03 AM, Aarusha wrote:
>> PYTHON INTERVIEW QUESTIONS
>>
>> Mindmajix has compiled Python Interview questions which would
>> benefit the learners to attend the Python interviews.
>>
>> Q. How is Python executed?
>
> It depends on the implementation (interpreter or compiler).
>
>> Python files are compiled to bytecode.
>
...
> Cython and others compiles to C (or C++) which is compiled to machine code.

Cython generates C/C++ code that depends on CPython API such as
PyNumber_TrueDivide(). For comparison, RPython (a restricted subset of
Python used by Pypy) can be statically compiled.

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to