función fromtimestamp() de la clase Datetime.date en Python

La función fromtimestamp() se usa para devolver la fecha correspondiente a una marca de tiempo específica.

Nota: Aquí, la marca de tiempo va desde el año 1970 hasta el año 2038, y esta función no considera los segundos bisiestos, si los hay presentes en la marca de tiempo. Esta función es un método de clase.

Sintaxis: @classmethod fromtimestamp(timestamp)

Parámetros: Esta función acepta un parámetro que se ilustra a continuación:

  • timestamp: esta es la marca de tiempo especificada para la cual se devolverá la fecha.

Valores devueltos: esta función devuelve la fecha correspondiente a una marca de tiempo especificada.

Ejemplo 1: obtener una fecha correspondiente a una marca de tiempo de Época y Unix. 

Python3

# Python3 code to demonstrate
# Getting a date corresponding
# to a specified timestamp
  
# Importing datetime and time module 
import datetime
import time
  
# Calling the time() function
# to return current time
Todays_time = time.time()
  
# Printing today's time
print(Todays_time)
  
  
# Calling the fromtimestamp() function
# to get date from the current time
date_From_CurrentTime = datetime.date.fromtimestamp(Todays_time);
  
# Printing the current date
print("Date for the Timestamp is: %s"%date_From_CurrentTime);

Producción:

1627279008.95
Date for the Timestamp is: 2021-07-26

Ejemplo 2: obtener una fecha correspondiente a una marca de tiempo especificada.

Python3

# Python3 code to demonstrate
# Getting a date corresponding
# to a specified timestamp
  
# Importing datetime and time module 
import datetime
import time
  
# Initializing a timestamp value
Timestamp = 1323456464;
  
# Calling the fromtimestamp() function
# over the above specified Timestamp
date_From_Timestamp = datetime.date.fromtimestamp(Timestamp);
  
# Printing the date
print("Date for the Timestamp is: %s"%date_From_Timestamp);

Producción:

Date for the Timestamp is: 2011-12-09

Publicación traducida automáticamente

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