One of the things I always forget is date and time in Python.
So message to myself:
The strftime method is used for formatting (string_format_time)
import datetime 
start_date = datetime.datetime.now() 
DATE_FORMAT = '%d/%m/%Y %H:%M' 
print(start_date.strftime(DATE_FORMAT))






