+ 3
What does >>> exactly do in python?
8 Antworten
+ 17
it does nothing. it's just a visual indicator to say HEY I'M READY BOSS. you can ignore it
+ 7
>>> is the prompt symbol for Python
+ 7
It basically just means that the interpreter is ready to have the python statements typed in. They won't be shown in the output so:
>>> print "Sololearn"
The output would be Sololearn
+ 5
It is promote symbol in python interpreter. It indicate to proceed to write code. And ..... in python indicate continuation
+ 5
Its like...
"Write something here"
+ 3
>>> this indicates, now you can write your code.
Whenever it shows, you can start writing your code
0
yeah
I know that
But I don't understand it...
0
So this ">>>" doesn't need to write, right?