Untitled
Anonymous
python
11/25/2021 6:00 PM
224 B
17
Indexable
from datetime import datetime input_datetime = '25/11/2021 18:22:14' python_datetime = datetime.strptime(input_datetime, '%d/%m/%Y %H:%M:%S') print(python_datetime)
Editor is loading...
from datetime import datetime input_datetime = '25/11/2021 18:22:14' python_datetime = datetime.strptime(input_datetime, '%d/%m/%Y %H:%M:%S') print(python_datetime)