python datetime utc code example

Example 1: python datetime string

import datetime

today = datetime.datetime.now()
date_time = today.strftime("%m/%d/%Y, %H:%M:%S")
print("date and time:",date_time)

Example 2: python datetime to utc

from datetime import timezone

timestamp = dt.replace(tzinfo=timezone.utc).timestamp()

Example 3: 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 4: python datetime now

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

Example 5: python datetime from timestamp utc

dt_object = datetime.fromtimestamp(timestamp)