Untitled
unknown
python
3 years ago
167 B
4
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)