- 1
Why
i = 5 while True: print(i) i = i - 1 if i <= 2: break when they say while true: what do they mean by true??? whats supposed to be true????
2 ответов
0
True is a keyword that obviously means true and the conditional runs
i = 5 while True: print(i) i = i - 1 if i <= 2: break when they say while true: what do they mean by true??? whats supposed to be true????