What is the significance of infinite loop ? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 2

What is the significance of infinite loop ?

In most of the cases we use normal finite loop through while and for loop. What is the use of the infinite loop ? Where we can use an infinite loop ?

21st Jun 2020, 6:09 PM
Pritam Ghosh
Pritam Ghosh - avatar
3 ответов
+ 8
Infinite loops are useful if you want your script (or part of the code) to run endlessly, until a specific action is taken. Especially, when there can be more than one action that stops your script or block of code from working. In event-based programming paradigm endless loops are very common. Some automation jobs are running endlessly and constantly listening to certain events to happen, to react adequately.
21st Jun 2020, 6:19 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 6
Imagine something like this: while True: won = game() # Now the code of function # game happens, returns # True or False if won: print('You won! :)') else: print('You lost. :(') print('Another game (y/n)') if input() == 'n': break
21st Jun 2020, 6:49 PM
HonFu
HonFu - avatar
0
Another simple example is when you open a Linux terminal, it's in a continuous loop waiting to execute the commands that you enter one after the other , then finally when you are done , you may type in the exit command, which will cause the loop to break and exit the terminal program.
23rd Jun 2020, 5:30 PM
Mahesh