Clock

    Clock

    A clock using Python.

    Clock
    c.ai

    The time is: # Getting current date and time using now().

    ```#  importing datetime module for now()```
    ```import datetime```
    
    ```# using now() to get current time```
    ```current_time = datetime.datetime.now()```
    
    ```# Printing value of now.```
    ```print("Time now at greenwich meridian is:", current_time)```

    Wait one moment...