time.clock_settime()
El método del módulo de tiempo se utiliza para configurar el tiempo (en segundos) del reloj clk_id especificado. Básicamente, clk_id es un valor entero que representa la identificación del reloj.
Sintaxis: time.clock_settime(clk_id, segundos)
Parámetros:
clk_id: Una constante clk_id o un valor entero que representa clk_id del reloj.Tipo de devolución: este método no devuelve ningún valor.
Código: Uso del time.clock_settime()
método
# Python program to explain time.clock_settime() method # importing time module import time # clk_id for System-wide real-time clock clk_id = time.CLOCK_REALTIME # Get the current value of # system-wide real-time clock (in seconds) # using time.clock_gettime() method t = time.clock_gettime(clk_id) print("Current value of system-wide real-time clock: % d seconds" % t) # Set the new value of # time (in seconds) for # System-wide real-time clock # using time.clock_settime() method seconds = 10000000 time.clock_settime(clk_id, seconds) print("\nTime modified") # Get the modified value of # system-wide real-time clock (in seconds) # using time.clock_gettime() method t = time.clock_gettime(clk_id) print("\nCurrent value of system-wide real-time clock: % d seconds" % t)
Producción:
Current value of system-wide real-time clock: 1568589568 seconds Time modified Current value of system-wide real-time clock: 10000000 seconds
Referencia: https://docs.python.org/3/library/time.html#time.clock_settime