yield讓協程暫停,和線程的阻塞是有本質區別的

#coding=utf-8 import time def consumer(): r = '' while True: print "before yield" n = yield r print n if not n: print n # return
相關文章
相關標籤/搜索