Programa de Python para obtener la hora actual

En este artículo, conoceremos los enfoques para obtener la hora actual en Python. Hay múltiples formas de conseguirlo. El módulo de fecha y hora más preferible se usa en Python para crear el objeto que contiene la fecha y la hora.
1: Hora actual de una zona horaria – Usando el módulo pytZ

from datetime import *
import pytz
  
  
tz_INDIA = pytz.timezone('Asia/Kolkata') 
datetime_INDIA = datetime.now(tz_INDIA)
print("INDIA time:", datetime_INDIA.strftime("%H:%M:%S"))

Producción:

INDIA time: 19:29:53

2: Hora actual – Uso del objeto de fecha y hora

Ejemplo 1:

from datetime import datetime
  
# now() method is used to
# get object containing 
# current date & time.
now_method = datetime.now()
  
# strftime() method used to
# create a string representing
# the current time.
currentTime = now_method.strftime("%H:%M:%S")
print("Current Time =", currentTime)

Producción:

Current Time = 19:31:51

Ejemplo 2:

from datetime import datetime
  
# Time object containing 
# the current time.
time = datetime.now().time() 
  
print("Current Time =", time)

Producción:

Current Time = 19:33:29.087840

3. Obtención de tiempo: uso del módulo de tiempo.

import time
  
  
# localtime() method used to
# get the object containing
# the local time.
Time = time.localtime()
  
# strftime() method used to
# create a string representing
# the current time.
currentTime = time.strftime("%H:%M:%S", Time)
print(currentTime)

Producción:

19:35:17

Publicación traducida automáticamente

Artículo escrito por shivamraj74 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 *