+ 1
What is the use of triple greater than (>>>) when outputting on Python?
2 Respostas
+ 3
from the docs
https://docs.python.org/2/tutorial/interpreter.html#interactive-mode
"When commands are read from a tty, the interpreter is said to be in interactive mode. In this mode it prompts for the next command with the primary prompt, usually three greater-than signs (>>>);"
and another reference
https://stackoverflow.com/questions/16420078/what-do-the-three-arrow-signs-mean-in-python
+ 1
Thank you, now I understand.