Dapatkan waktu dari cap waktu di Python

# import the date class
from datetime import datetime

# Getting Datetime from timestamp
date_time = datetime.fromtimestamp(1434323424)
print("Datetime from timestamp:", date_time)
Outrageous Ostrich