試著突破低點,往高點邁進
import time from threading import Thread def test(): for i in range(1,11): print(i) time.sleep(1) t = Thread(target=test) t.start()