How is the condition in the part "while True" is met? It doesn't make any sense to me at all, can someone please explain it to me? I'm in the process of learning python, and I want to understand how every single aspect of its programming syntax works. | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

How is the condition in the part "while True" is met? It doesn't make any sense to me at all, can someone please explain it to me? I'm in the process of learning python, and I want to understand how every single aspect of its programming syntax works.

For example: x = o while True: print(x) x = x + 1 if x <= 5: break

30th Nov 2016, 10:41 AM
Logical_Cyclops
Logical_Cyclops - avatar
2 Respostas
+ 2
sometimes you have no idea that exactly when your algorithm in the loop should be stop, you can use an infinite loop (while true) and at least declare a condition in loop's body too break it
30th Nov 2016, 10:50 AM
Nima Moradi
Nima Moradi - avatar
+ 1
You basically tell the loop that it will always be true, imagine making a variabe y and assign True to it, then use while y do something, and since y wont change, its always gonna be True. Except here you right away just tell python it's always True.
30th Nov 2016, 11:04 AM
Emilot Margus
Emilot Margus - avatar