0
Can someone show me the solution to this? I got stuck.
Fill in the blanks to declare a variable, add 5 to it and print its value. x = 4 x blank = 5 print (x)
2 Respuestas
+ 3
x+=1 is short form for x = x + 1
Also same goes for
-=
*=
/=
%=
//=
hope it helps to solve it..
+ 2
Thank you!!! Yes, it works.