+ 1
Why do they put >>> before print?
2 Answers
+ 4
Maybe to represent the command kine interpreter.
+ 1
The >>> prompt is the Python interpreterâs way of asking you, âWhat do you want me to do next?â and it is called "chevron" prompt.
- or -
>>> is called a prompt, which means itâs something the computer displays to tell you itâs ready for your instructions. You can type things into that window, and the computer will obey them when it understands your commands.