Python String to DateTime - Tutorial Kart
Convert Python String to DateTime
Python String to DateTime Object
To convert string to DateTime object in Python, you can use datetime.datetime.strptime() function. The syntax of strptime() is given below.
strptime(date_string, format)
The function returns new datetime object parsed from date_string using the specified format.
Example 1 ? Convert Python String to DateTime Object
In the following program, we shall take a string and format using which we have to convert the date string to datetime object. For the format codes we used in format string, please refer Python DateTime Format.
Python Program
from datetime import datetime date_string = '05/28/2020 23:05:24' format = '%m/%d/%Y %H:%M:%S' dt = datetime.strptime(date_string, format) print(dt)
Output
2020-05-28 23:05:24
Example 2 ? Convert Python String to DateTime Object ? Only Date Specified
In the following program, we shall take a string that has only month, day and year. And format this string to datetime object using strptime() function.
Python Program
from datetime import datetime date_string = '05/28/2020' format = '%m/%d/%Y' dt = datetime.strptime(date_string, format) print(dt)
Output
2020-05-28 00:00:00
The date that we provided in the string is set as is in the datetime object. But, for the time, the default values have been taken. The default value for hours is 00, minutes is 00, and seconds is 00.
Example 3 ? Convert Python String to DateTime Object ? Only Time Specified
In the following program, we shall take a string that has only hours, minutes and seconds. And format this string to datetime object using strptime() function.
Python Program
from datetime import datetime date_string = '23:05:24' format = '%H:%M:%S' dt = datetime.strptime(date_string, format) print(dt)
Output
1900-01-01 23:05:24
The time that we provided in the string is set as is in the datetime object. For the date, the default values have been taken. The default value for year is 1900, month is 01, and day is 01.
Conclusion
Concluding this Python Tutorial, we can provide date and time information as string and convert it into datetime object using the specified format and strptime() function.
Python Programming
Python Tutorial Install Python Install Anaconda Python Python HelloWorld Program Python Variables Python Variable Data Type Conversion Python Comments
Control Statements
Python If Python If Else Python While Loop Python For Loop
Python String
Python String Methods Python String Length Python String Replace Python Split String Python Count Occurrences of Sub-String Python Sort List of Strings
Functions
Python Functions
Python Collections
Python List Python Dictionary
Advanced
Python Multithreading
Useful Resources
Python Interview Questions
................
................
In order to avoid copyright disputes, this page is only a partial summary.
To fulfill the demand for quickly locating and searching documents.
It is intelligent file search solution for home and business.
Related searches
- python string to char
- convert string to datetime excel
- convert string to datetime javascript
- string to datetime python pandas
- powershell convert string to datetime format
- convert string to datetime python
- powershell convert string to datetime object
- convert string to datetime powershell
- convert string to datetime java
- datetime python string to datetime
- python timestamp to datetime string
- convert string to datetime pyspark