What is the meaning of >>> in Python Language?

2021

What is the meaning of >>> in Python Language?

Answer: C. Interpreter is ready to take instructionIn Python, the '>>> ' symbol is the default prompt in the interactive interpreter. It indicates that the interpreter is ready to accept a new command. This…

  1. A.

    3 left shift

  2. B.

    3 right shift

  3. C.

    Interpreter is ready to take instruction

  4. 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.

Explore the full course: Rssb Senior Computer Instructor

Loading lesson…