A. Interpreter इंटरप्रेटर
B. Compiler कम्पाइलर
C. Combination of Compiler and Interpreter कंपाइलर और इंटरप्रेटर का संयोजन
D. all of these ऊपर के सभी
Correct Answer is :
A. Interpreter
Explanation
Python uses an interpreter to convert source code into machine-readable bytecode and execute it. Unlike compiled languages, where the source code is converted into machine code before execution, Python's interpreter translates the source code line by line as it runs the program. This allows for a more dynamic and interactive development process.