Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. def func1():
  2. print("func1 up and running.")
  3.  
  4. def func2():
  5. print("func2 up and running.")
  6.  
  7. proc1 = Process(target=func1)
  8. proc1.start()
  9.  
  10.  
  11. proc2 = Process(target=func2)
  12. proc2.start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement