0
How to do counting operation like 1+1 in the code playground (on phytons)
i write >>>1+1 but it become error.
2 ответов
+ 3
lets say you want to keep counting info in variable x
all you have to do is use
x++;
this means x= x +1
+ 2
Type this as code:
print (1 + 1)
and then press "run"