Answers for "python current time"

21

getting time python

import datetime
 
currentDT = datetime.datetime.now()
print(str(currentDT))

# prints XXXX-XX-XX XX:XX:XX.XXXXXX
# or

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)
# prints
"""
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
"""
Posted by: Guest on March-28-2020
7

python show current time

from datetime import datetime

now = datetime.now()

current_time = now.strftime("%H:%M:%S")
print("Current Time =", current_time)
Posted by: Guest on April-29-2020
6

get time pithon

"""Imports the datetime package from the Python library"""
from datetime import datetime

"""Sets the variable now to the current date and time"""
now = datetime.now()

"""The variable current_time contains the string values of the current time"""
current_time = now.strftime("%H:%M:%S")
print("Current Time =", current_time)
Posted by: Guest on May-29-2020
7

print time python

from datetime import datetime

now = datetime.now().time() # time object

print("now =", now)
print("type(now) =", type(now))
Posted by: Guest on March-22-2020
1

python displaying the time

import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Posted by: Guest on March-02-2020
7

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()
Posted by: Guest on December-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language