Question #109

Which function temporarily suspends the processing of the thread in which it is called?

time.sleep() suspends the execution of the calling thread for the given number of seconds. The argument may be a floating point number to indicate a more precise sleep time. (docs.python.org/3/library/time.html#time.sleep)


Comment on Disqus:

Comment on Twitter:

Question difficulty: 🔵🔵🔵🔵🔵


Similar questions: