how to print the current time in python code example
Example 1: python print time
import datetime
now = datetime.datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Example 2: getting time python
import datetime
currentDT = datetime.datetime.now()
print(str(currentDT))
import datetime
currentDT = datetime.datetime.now()
print ("Current Year is: %d" % currentDT.year)
print ("Current Month is: %d" % currentDT.month)
print ("Current Day is: %d" % currentDT.day)
print ("Current Hour is: %d" % currentDT.hour)
print ("Current Minute is: %d" % currentDT.minute)
print ("Current Second is: %d" % currentDT.second)
print ("Current Microsecond is: %d" % currentDT.microsecond)
"""
Current Year is: XXXX
Current Month is: XX
Current Day is: XX
Current Hour is: XX
Current Minute is: XX
Current Second is: XX
Current Microsecond is: XXXXXX
"""
Example 3: get current time python
from datetime import datetime as d
import time as t
from os import system as clear
cls = lambda: clear("clear")
prev = d.now()
prev = prev.strftime("%Y-%m-%d %H:%M:%S")
while True:
time = d.now()
time = time.strftime("%Y-%m-%d %H:%M:%S")
print(time)
if not time == prev:
prev = time
t.sleep(1)
cls()
Example 4: how to show today time in python
from datetime import datetime
import pytz
tz_NY = pytz.timezone('America/New_York')
datetime_NY = datetime.now(tz_NY)
print("NY time:", datetime_NY.strftime("%H:%M:%S"))
tz_London = pytz.timezone('Europe/London')
datetime_London = datetime.now(tz_London)
print("London time:", datetime_London.strftime("%H:%M:%S"))