VOOZH about

URL: https://www.geeksforgeeks.org/python/how-to-convert-pythons-isoformat-string-back-into-datetime-object/

⇱ How to convert Python's .isoformat() string back into datetime object - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to convert Python's .isoformat() string back into datetime object

Last Updated : 28 Jul, 2021

In this article, we will learn how to convert Pythons .isoFormat() string back into a datetime object. Here we are using the current time and for that, we will store the current time in the current_time variable.

The function now() of this module, does the job perfectly.

Example: Getting current time

Output:

2021-07-22 15:17:19.735037

Get the string format of time

In this step, we are going to get the string format of the iso time. For this, isoformat() function is used.

Example: getting string format of time


Output
2021-07-26T11:36:17.090181

Get the DateTime object from the iso format

So here we are going to get the DateTime object from the iso string. For that fromisoformat() function is used.

Example: Get the DateTime object from the iso format

Output:

2021-07-26 17:06:51.149731
Comment