how to get the time inpython code example
Example 1: oython get time
from datetime import datetime
now = datetime.now()
current_time = now.strftime("%H:%M:%S")
print("Current Time =", current_time)
Example 2: get time python
from datetime import datetime
date = datetime.now()
print(date)
# Prints in the format: year, month, day, hour, minute, second and microsecond