Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/09/2018, 20:30
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: problema con time

Se que es de hace un mes pero te dejo un ej con time


Código Python:
Ver original
  1. import time
  2.  
  3. def microtime():
  4.     return int(round(time.time() * 1000))
  5.  
  6. ti = microtime()
  7. while True:
  8.     tf = microtime()
  9.     if abs(tf-ti) >= 3000:
  10.         #pass 3 segs without stop the program
  11.         #break #i guess?