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.

14 lines
299 B
Python

# Память родительского и дочернего процесса
import os
foo = "bar"
if os.fork() == 0:
# дочерний процесс
foo = "baz"
print("child:", foo)
else:
# родительский процесс
print("parent:", foo)
os.wait()