0
what does it mean "loop forever"?
4 Answers
+ 2
loop do not stop
+ 1
Loop that never breaks. continously executing the block of code
+ 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».
0
thanks Sara abdelhakem,francisco gomez,and sundar