how to check how much time working my program in python code example
Example: python time code
import time
t0 = time.time()
code_block
t1 = time.time()
total = t1-t0
import time
t0 = time.time()
code_block
t1 = time.time()
total = t1-t0