0
when is it False
a = 7 b = 7 while False: a =3 b = 4 print(b-a)
2 ответов
+ 5
That's actually the opposite, the loop will never run.
0
Because its answer is 7-7, i want to know how to use 4-3. It is a exercise in this APP
a = 7 b = 7 while False: a =3 b = 4 print(b-a)