You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
318 B
Python

# Создание процесса на Python
import time
import os
pid = os.fork()
if pid == 0:
# дочерний процесс
while True:
print(f"child: {os.getpid()}" )
time.sleep(5)
else:
# родительский процесс
print(f"parent: {os.getpid()}")
os.wait()