14 lines
251 B
Python
14 lines
251 B
Python
|
|
def f(name):
|
|
print ("Enter")
|
|
with open('/Users/gobbo_a/readme.txt', 'w') as f:
|
|
f.write('hello' )
|
|
print('hello', name)
|
|
|
|
|
|
|
|
p = mp.Process(target=f, args=('bob',))
|
|
p.start()
|
|
print ("STARTED")
|
|
p.join()
|
|
print ("JOINED -> ", p.exitcode) |