import datetime

class Time:
    def __init__(self):
        self.created_at = datetime.datetime.now()

    def display_time(self):
        print(self.created_at)


nowtime = Time()
nowtime.display_time()

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: