+ 2
How "While" can be used as accepting user input?
Python 3
2 Answers
+ 4
while 1==1:
input()
#I don't think this will work very well though lol
+ 1
if you want to take regular input continuously do
while True:
input(any)
or for 5 times
times=5
start=1
while start<=times:
input()
start=start+1