+ 1
>>> and Python
So in the lessons and some comments Iâve seen >>> a good bit. For instance, >>>print(âHello Worldâ). Im wondering what is itâs meaning? Iâm just starting with Python and was confused as to why it was there but it seemed like the lessons Iâve done so far didnât cover it. Any help is greatly appreciated. Thanks!
1 Antwort
+ 8
When you run python shell on pc, as you write a line and press enter it displays output of first line in the next line. So here start of every line to be compiled and start line of output is marked by >>>.
Don't worry this is useless and putted by program itself.