多线程与socket编程

一、多线程

1、threading模块

import threading
import time


def foo(something):
    for i in range(10):
        time.sleep(1)
        print(something)


你可能感兴趣的:(持续集成,python)