how to get time string in python 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: how to make python tell the time

import time

t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
print(current_time)

Example 3: get time pithon

"""Imports the datetime package from the Python library"""
from datetime import datetime

"""Sets the variable now to the current date and time"""
now = datetime.now()

"""The variable current_time contains the string values of the current time"""
current_time = now.strftime("%H:%M:%S")
print("Current Time =", current_time)

Example 4: python from timestamp to string

from datetime import datetime

timestamp = 1545730073
dt_object = datetime.fromtimestamp(timestamp)

print("dt_object =", dt_object)
print("type(dt_object) =", type(dt_object))

# Output

dt_object = "2018-12-25 09:27:53"
type(dt_object) = <class 'datetime.datetime'>