+ 1
What do you do if you put an input in a for or while loop
Is there no way to do infinite inputs
4 Answers
+ 1
It will not continue the loop until the input is filled.
+ 1
If you are asking for infinite loop,
then here's the way:
while True:
input()
Above code will keep asking for input infinitely, if that's what you wanted.
+ 1
Thanks nAutAxH AhmAd
0
Thanks



