What is python unsigned right shift (>>>) ?

Answer : The symbol >>> is used to point out that what’s coming after is Python Code…..

>>> used in python

  • The symbol >>> is used to point out that what’s coming after is Python Code. It’s also known as Python Prompt.
  • Likewise this is the prompt that appears in the Python Console interactive shell when you type python in the terminal. It indicates that you are in the python interactive shell and prepared to type python code.
Example :
>>> print("Welcome to Wikitechy Website")
"Welcome to Wikitechy Website"

This means that the command is print(“Welcome to Wikitechy Website”).

Output:

“Welcome to Wikitechy Website”
Leave a Reply

Your email address will not be published. Required fields are marked *

You May Also Like