What is the meaning of >>> in Python Language?
2021
What is the meaning of >>> in Python Language?
Answer: C. Interpreter is ready to take instruction — In Python, the '>>> ' symbol is the default prompt in the interactive interpreter. It indicates that the interpreter is ready to accept a new command. This…
- A.
3 left shift
- B.
3 right shift
- C.
Interpreter is ready to take instruction
- D.
Compiler is ready to take instruction
Attempted by 3481 students.
Show answer & explanation
Correct answer: C
In Python, the '>>> ' symbol is the default prompt in the interactive interpreter. It indicates that the interpreter is ready to accept a new command. This prompt appears when you start the Python shell and is used for executing code line by line. It is not a bitwise operator or related to compilation. Instead, it is a visual indicator of the interpreter's readiness to process input.