how to get date from datetime in python code example
Example 1: python get date and time
import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Example 2: how to set datetime format in python
import datetime
x = datetime.datetime(2018, 9, 15)
print(x.strftime("%b %d %Y %H:%M:%S"))
Example 3: python set a specific datetime
from datetime import datetime
custom_date_time = datetime(2021, 7, 23, 17, 30, 29, 431717)
print(custom_date_time)