import os # Duplicate the current process in to another process new_pid = os.fork() # Will return 0 if child process if new_pid == 0: ...
確定! 回上一頁