0

what does it mean "loop forever"?

16th Jul 2016, 6:27 PM
RAVI ABHISHEK
RAVI ABHISHEK - avatar
4 Answers
+ 2
loop do not stop
16th Jul 2016, 6:49 PM
Sara Abdelhakem
Sara Abdelhakem - avatar
+ 1
Loop that never breaks. continously executing the block of code
16th Jul 2016, 7:26 PM
sundar
sundar - avatar
+ 1
Think in a "loop forever" as a program that never ends; a program that keeps repeating itself over and over... like this: while True: print('Hello') When you run this program, it will print «Hello» to the screen forever, because the «while» statement's conditions is always «True».
17th Jul 2016, 12:17 AM
Francisco GĂłmez GarcĂ­a
Francisco GĂłmez GarcĂ­a - avatar
0
thanks Sara abdelhakem,francisco gomez,and sundar
17th Jul 2016, 4:03 AM
RAVI ABHISHEK
RAVI ABHISHEK - avatar