question # 4\nmultiple choice\nwhat is done when python compiles your program?\nit is converted into octal…

question # 4\nmultiple choice\nwhat is done when python compiles your program?\nit is converted into octal numbers.\nit is converted into hexadecimal.\nit is converted into bytecode.\nit is converted into bytemap.
Answer
Brief Explanations:
When Python compiles a program, it converts the source - code into bytecode. Bytecode is an intermediate representation that can be executed by the Python Virtual Machine (PVM). It is not converted into octal numbers, hexadecimal, or bytemap during the compilation process.
Answer:
It is converted into bytecode.