Python time altzone() Método

El método Python altzone() se usa para devolver el desplazamiento de la zona horaria DST local, en segundos al oeste de UTC. También podemos obtener la hora actual entre la zona horaria actual y UTC usando el método de zona horaria y zona alternativa.

Sintaxis:

time.altzone

Ejemplo:

Python3

# import the time module
import time
  
# display altzone
print(time.altzone)

Producción:

25200

Ejemplo: programa de Python para obtener la hora actual entre la zona horaria actual y UTC utilizando el método de zona horaria y zona alternativa

Python3

# import time module
import time
  
# get_zone function to get the
# current time between current time zone and UTC
# by using timezone  and altzone method
def get_zone():
    dst = time.daylight and time.localtime().tm_isdst
      
    # get altzone if there exists dst otherwise
    # get timezone
    offset = time.altzone if dst else time.timezone
      
    # check if offset greater than 0
    westerly = offset > 0
  
    # get the minutes and seconds
    minutes, seconds = divmod(abs(offset), 60)
    hours, minutes = divmod(minutes, 60)
      
    # return the timezone
    return '{}{:02d}{:02d}'.format('-' if westerly else '+', hours, minutes)
  
# call the function
get_zone()

Producción:

+0000

Publicación traducida automáticamente

Artículo escrito por ojaswilavu8128 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *