Answer the question
In order to leave comments, you need to log in
How to not wait for user input in python?
Hello, I have the following code:
def some_func():
while True:
Name = str(input("Какойто текст:"))
print("OK")
some_func()
Answer the question
In order to leave comments, you need to log in
async def some_func():
while True:
print("OK")
await str(input("Какойто текст:"))
some_func()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question