Python 進程共享變量

– Startweb 點擊此處觀看本系列配套視頻。 進程有獨立的內存 咱們先來看一個例子。服務器 from multiprocessing import Process x = 1 def my_task(): global x x += 1 # 在進程中修改 x print(f'x={x}') if __name__ == '__main__': p1
相關文章
相關標籤/搜索