+ 2
'>>>' where it is able to use ? Mobile app or pc ! I m confused
4 Answers
+ 2
it is just to tell us that u should put input as 'print___' so on.
am i correct or not???
+ 1
If you're talking about the Python console, it basically has no meaning whatsoever. It is just to prompt you to enter a certain line so that it can output a result.
For example, the Python interpreter may work like this:
>>>6 + 4
10
>>>type(12)
<type 'int'>
>>>
Hope this helped!
+ 1
Pretty much, except it only allows you to enter one line at a time, with an exception being for conditional statements.