Python 3.4 while loop increment -


  x = flase   while !x :      = 0      print(a)      a++      pass      if == 10:        x = true     else:        continue   

i error @ "a++". using visual studio 2013 community , gives me red underline after "a++" , before "pass"

python not support ++. can this

     = + 1  

Comments