+ 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 Answer
+ 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.