In order to convert a string to DateTime object we will make use of the datetime module that supplies classes for manipulating dates and times.
from datetime import datetime
Next we make use of the date.strftime(string, format) method to get a string representation of the date string.
datetime.strptime('26 March 2023 1:00 AM', '%d %B %Y %I:%M %p')
Let's take a look at an example,
from datetime import datetime
str_date = '26 March 2023 1:00 AM'
date_format_str = '%d %B %Y %I:%M %p'
date_time_object = datetime.strptime(str_date, date_format_str)
print(date_time_object)
Output:
2023-03-26 01:00:00

Reference: https://docs.python.org/3/library/datetime.html#module-datetime
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- Java JDK 21 - The Latest LTS Version - Java-JDK-21
- Notepad++ display files on tab bar as horizontal instead of vertical - NotepadPlusPlus
- [Solutions] Android Error in an XML file: aborting build. Eclipse SDK - Android
- How to reset an Apple Watch without an iPhone - Apple
- [fix] Spring Boot Data JPA - No identifier specified for entity - Java
- 5 Programming Languages to Learn in the Year 2021 - News
- Python Hello World! Program with code example (snippet) - Python
- How to Parse XML String in Python - Python