-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiThreading.py
48 lines (35 loc) · 1.1 KB
/
MultiThreading.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Thread = a flow like a separate order of instructions.
# however each thread takes a turn running to achieve concurrency
# GIL = (global interpreter lock)
# allows only one thread to hold the control of the python intreprter at any one time
# cpu bound = program/task spends most of its time waiting for internal
# events (CPU intensive)
# use multi processing
# io bond = program/ task spends most of its time waiting for external events (user input, web scripting)
# use multithreding
import threading
import time
def eat_breakfast():
time.sleep(3)
print('you eat breakfast')
def drink_coffee():
time.sleep(4)
print('you drink cofee')
def study():
time.sleep(5)
print('you finish studying')
x = threading.Thread(target=eat_breakfast,args=())
x.start()
y = threading.Thread(target=drink_coffee,args=())
y.start()
z = threading.Thread(target=study,args=())
z.start()
x.join()
y.join()
z.join()
# eat_breakfast()
# drink_coffee()
# study()
print(threading.active_count())
print(threading.enumerate())
print(time.perf_counter())