+ 1
Hey guys!...is it necessary to put '>>>' in every statement in phyton.i am confused how to use it in phython, pls help me out..
5 Respuestas
+ 3
When you download the Python interpreter, it comes with something called IDLE. This is a utility tool that allows users to run code without an IDE. ‘>>>’ tells the user where to enter their code, ex:
IDLE
——-
>>> a=3
>>>b=a+4
>>>print(b)
>>>7 —> result printed
+ 2
No you dont thats just an indicator that you are currently on that line, >>> is part of the interpreter not the code you are making
+ 1
thanks guys
0
No that’s in indicator