datetime date today code example

Example 1: python print time

import datetime
now = datetime.datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))
# key: https://strftime.org/

Example 2: today date in python

from datetime import date
today = date.today().strftime("%d-%m-%Y")

Example 3: datetime python

from datetime import datetime as d
date = d.now()
print(date.strftime("%Y-%m-%d %H:%M:%S"))

Example 4: today date python

today = datetime.today().strftime("%Y-%m-%d %H:%M:%S")

Example 5: python date and time

from datetime import datetime
now = datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))


Output: 2020-06-19 10:34:45

Example 6: python datetime now

import datetime
print(datetime.datetime.now()) #datetime.datetime.now() is the syntax

Tags:

Misc Example