La función fromisoformat() se usa para construir un objeto de fecha a partir de una string específica que contiene una fecha en formato ISO. es decir, aaaa-mm-dd.
Sintaxis: @classmethod fromisoformat(date_string)
Parámetros: Esta función acepta un parámetro que se ilustra a continuación:
- date_string: este es el formato ISO especificado, es decir, la string de fecha aaaa-mm-dd cuyo objeto de fecha se va a construir.
Valores devueltos: esta función devuelve un objeto de fecha construido a partir de la string de fecha de formato ISO especificada.
Ejemplo 1: Obtener un objeto de fecha de una string especificada que contiene la fecha en formato ISO. es decir, aaaa-mm-dd
Python3
# Python3.7 code for Getting # a date object from a specified # string that contains date in # ISO format. i.e., yyyy-mm-dd # Importing datetime module import datetime # Initializing a date Date = "2012-10-12"; # Calling fromisoformat() function to # construct a datetime.date object New_date = datetime.date.fromisoformat(Date); # Printing the new constructed date object print("The constructed date object is: %s"%New_date);
Producción:
The constructed date object is: 2012-10-12
Ejemplo 2: obtenga el objeto de fecha recién creado para la fecha especificada.
Python3
# Python3.7 code for Getting # a date object from a specified # string that contains date in # ISO format. i.e., yyyy-mm-dd # Importing datetime module from datetime import date # Calling the fromisoformat() function # to Print the new created date object # for the specified date in # ISO format of 2020-10-09 print(date.fromisoformat('2020-10-09'))
Producción:
2020-10-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