python get minutes from datetime code example

Example 1: how to get the current date hour minute month year in python

########################################################################
import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
########################################################################
from datetime import *
now = datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
########################################################################

Example 2: how to get date in numbers using python

from datetime import datetime
shortDate = datetime.today().strftime('%Y-%m-%d')