import sys, time, threading def ss(i): time.sleep(int(i)) print i for i in sys.argv[1:]: threading.Thread(target=ss, args=i).start() 複製代碼