I\'m trying to program a loop with a asynchronous part in it. I dont want to wait for this asynchronous part every iteration though. Is there a way to not wait for this function
You can put it in a thread. Instead of test()
test()
from threading import Thread Thread(target=test).start() print("this will be printed immediately")