Open In App

Isoformat() Function Of Datetime.date Class In Python

Improve
Improve
Like Article
Like
Save
Share
Report

The Isoformat() function is used to return a string of date, time, and UTC offset to the corresponding time zone in ISO 8601 format.

The standard ISO 8601 format is all about date formats for the Gregorian calendar. This format prescribes that a calendar date needs to be represented using a 4-digit year followed by a two-digit month and a two-digit date. i.e., YYYY-MM-DD. Example: 2020-01-01.

Syntax: isoformat(sep=’T’, timespec=’auto’)

Parameters: This function accepts two parameters which are illustrated below:

  • sep: It is the separator character that is to be printed between the date and time fields. It is an Optional Parameter having default value of “T”.
  • timespec: It is the format specifier for the timespec. It is also an Optional Parameter with a default value of “auto”.

Return values: This function returns the date value of a Python DateTime.date object in ISO 8601 format.

Example 1: In the below example, the isoformat() function has been called on today’s date and it returns the same today’s date string in ISO 8601 format.

Python3




# Python3 code to demonstrate
# Getting date values in ISO 8601 format
 
# importing datetime and time module
import datetime
import time
         
# Getting today's date
todays_Date = datetime.date.fromtimestamp(time.time());
 
# Calling the isoformat() function over the
# today's date
date_in_ISOFormat = todays_Date.isoformat();
 
# Printing Today's date in ISO format
print("Today's date in ISO Format: %s"%date_in_ISOFormat);


Output:

Today's date in ISO Format: 2021-07-27

Example 2: In the below example, the isoformat() function has been called on today’s date and time and it returns the same today’s date and time string in ISO 8601 format.

Python3




# Python3 code to demonstrate
# Getting date and time values
# in ISO 8601 format
 
# importing datetime and time module
import datetime
import time
     
# Getting today's date and time
todays_Date = datetime.datetime.now();
 
# Calling the isoformat() function over the
# today's date and time
DateTime_in_ISOFormat = todays_Date.isoformat();
 
# Printing Today's date and time in ISO format
print("Today's date and time in ISO Format: %s"%DateTime_in_ISOFormat);


Output:

Today’s date and time in ISO Format: 2021-07-27T16:02:08.070557

Example 3: In the below example, the isoformat() function has taken two parameters one is separator character such as ‘#’ and another parameter is format specifier for the time-specific. Here different values for the time-specific parameter are used that are already illustrated in the above parameter section.

Python3




# Python3 code to demonstrate
# Getting date and time values
# in ISO 8601 format
 
# importing datetime module
import datetime
     
# Getting today's date and time
DateTime_in_ISOFormat = datetime.datetime.now();
 
# Printing Today's date and time in ISO format of
# auto value for the format specifier
print(DateTime_in_ISOFormat.isoformat("#", "auto"))
 
# Printing Today's date and
# time format specifier as hours
print(DateTime_in_ISOFormat.isoformat("#", "hours"))
 
# Printing Today's date and
# time format specifier as minutes
print(DateTime_in_ISOFormat.isoformat("#", "minutes"))
 
# Printing Today's date and time
# format specifier as seconds
print(DateTime_in_ISOFormat.isoformat("#", "seconds"))
 
# Printing Today's date and time
# format specifier as milliseconds
print(DateTime_in_ISOFormat.isoformat("#", "milliseconds"))
 
# Printing Today's date and time
# format specifier as microseconds
print(DateTime_in_ISOFormat.isoformat("#", "microseconds"))


Output:

2021-07-27#16:01:12.090202
2021-07-27#16
2021-07-27#16:01
2021-07-27#16:01:12
2021-07-27#16:01:12.090
2021-07-27#16:01:12.090202


Last Updated : 15 Oct, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads