Tiempo de ejecución del programa Python
#its tricky and so much easy
#python execute time counter
#coded by Luban
import time
start_time = time.time()
while True:
x = time.time() - start_time
x = int(x)
print('Current Time = ',str(x))
Luban