Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import time
  2.  
  3. def oi():
  4. while True:
  5. print("oi")
  6. time.sleep(1)
  7.  
  8. oi()
  9.  
  10. oi
  11. oi
  12.  
  13. import time
  14. import multiprocessing
  15.  
  16. def oi():
  17. while True:
  18. print("oi")
  19. time.sleep(1)
  20.  
  21. quantidadeDeProcessos = 3
  22.  
  23. multiprocess(quantidadeDeProcessos, oi())
  24.  
  25. oi
  26. oi
  27. oi
  28. oi
  29. oi
  30. oi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement