convert date time to date python code example
Example 1: convert datetime to date python
datetime.datetime.now().date()
Example 2: how to get date in numbers using python
from datetime import datetime
shortDate = datetime.today().strftime('%Y-%m-%d')