Python String to DateTime - Tutorial Kart

嚜澧onvert 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.

Google Online Preview   Download

To fulfill the demand for quickly locating and searching documents.

It is intelligent file search solution for home and business.

Literature Lottery

Related searches