I was searching for a usleep() function in Python 2.7.
Does anybody know if it does exist, maybe with another function name?
import time usleep = lambda x: time.sleep(x/1000000.0) usleep(100) #sleep during 100μs