Tanggal Format F-String Python

import datetime
now = datetime.datetime.now()
print(f'{now:%Y-%m-%d %H:%M}')
pkmatador