2012年6月4日

摘要: 我们想再x秒后执行一个任务,可以使用twisted.internet.interfaces.IReactorTime:from twisted.internet import reactordef f(s):print "this will run 3.5 seconds after it was scheduled: %s" % sreactor.callLater(3.5, f, "hello, world")如果想每x秒就重复执行一个任务,可以使用twisted.internet.task.LoopingCall:from twisted.inte 阅读全文
posted @ 2012-06-04 13:52 很多不懂呀。。 阅读(693) 评论(0) 推荐(0) 编辑
摘要: 在python中的enumerate函数是用来遍历列表用法如下:lst= [1,2,3]for index,item in enumerate(lst): print '%d : %s' % (index,item)这里index对应的是列表lst中的序号,而item则对应列表lst中的元数。另外:python enumerate 用法 | 在for循环中得到计数参数为可遍历的变量,如 字符串,列表等;返回值为enumerate类:import strings = string.ascii_lowercasee = enumerate(s)print sprint list(e 阅读全文
posted @ 2012-06-04 10:30 很多不懂呀。。 阅读(1115) 评论(0) 推荐(0) 编辑

导航