我的问题是根据消息获取小时数。但我只得到开始时间,因为?time.sleep 是模拟传入消息的时间。为什么不给不同的时间表?
import time
localtime = time.asctime( time.localtime(time.time()) )
print "mensage 1",localtime
time.sleep(3)
print "Mensage", localtime
time.sleep(3)
print 'mensage ', localtime
我的问题是根据消息获取小时数。但我只得到开始时间,因为?time.sleep 是模拟传入消息的时间。为什么不给不同的时间表?
import time
localtime = time.asctime( time.localtime(time.time()) )
print "mensage 1",localtime
time.sleep(3)
print "Mensage", localtime
time.sleep(3)
print 'mensage ', localtime
你的变量localtime
是一个字符串。您应该实例化一个新的时间对象并在该对象上调用您的睡眠函数。
Python 中时间方法的文档在这里。文档中有一些代码示例可以为您提供一个起点。