基本上我不知道我需要做的做到這一點..在Python中
我有兩個迴路,並環路不同時間每個:
import time
while True:
print "Hello Matt"
time.sleep(5)
和然後另一個循環:
import time
while True:
print "Hello world"
time.sleep(1)
我需要在程序中二者結合的循環和都需要在獨立的同時和處理數據運行,沒有必要在它們之間共享數據。我想我正在尋找線程或多處理,但我不知道如何實現它這樣的東西。
看的例子(第二個):http://docs.python.org/2/library/multiprocessing.html#examples – Blender 2013-03-06 01:47:58