Take a look my talker code that I have made by python and suggest that how can I keep it in a loop which wilp never end. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Take a look my talker code that I have made by python and suggest that how can I keep it in a loop which wilp never end.

I was creating a simple but interesting talker which will just text you back,and it does not speak. I was creating it with python and I cannot understand that how could I keep it in a loop which will never end and continue to take input from user. Take a look at my code and suggest me please that what should I do to keep it in a loop.

19th Sep 2018, 12:02 AM
sanyam
sanyam - avatar
1 Answer
+ 2
Just put it in a loop. # here goes the lists and stuff while True: user = input("") # here goes the if statements However, this won't work at SoloLearn because you can't ask for input dynamically in here (all input must be provided before execution). Try it at an IDE.
19th Sep 2018, 7:59 AM
Eduardo Petry
Eduardo Petry - avatar