from multiprocessing import Processfrom time import sleepdef func(): sleep(6) print('这是儿子。。。')if __name__ == '__main__': p = Process( ...
確定! 回上一頁