There are three statements like below:
print("first time", time.time())
self.wait(5)
print("second time", time.time())
I suppose the difference between "second time" and "first time" will be 5 seconds, however, they are the same, why?
I think the self.wait(5) should be async call, if so, how to get timestame in runtime?