Write output of code in comment
i=0
while i<3:
print(i)
i++
print(i+1)
Write output of code in comment
i=0
while i<3:
print(i)
i++
print(i+1)
For further actions, you may consider blocking this person and/or reporting abuse
Mike Young -
Jad Tounsi -
T3ns0r -
Sohail Jafri -
Top comments (8)
SyntaxError
?lol I'm not a python developer, but if that's the answer to the question...
i++
isn't valid syntax in python.yes you are correct
i++
is not a valid syntax in pythonIt will give a error because there are no increment operators in python
SyntaxError
I think it's not correct