1. 程式人生 > >python~多工之協程

python~多工之協程

def test1():
    while True:
        print('------1------')
        yield None


def test2():
    while True:
        print('-------2------')
        yield None

t1 = test1()
t2 = test2()

while True:
    t1.__next__()
    t2.__next__()