get date and time python
from datetime import datetime now = datetime.now() print (now.strftime("%Y-%m-%d %H:%M:%S")) Output: 2020-06-19 10:34:45
get date and time python
from datetime import datetime now = datetime.now() print (now.strftime("%Y-%m-%d %H:%M:%S")) Output: 2020-06-19 10:34:45
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 """
print time in python
import time t = time.localtime() current_time = time.strftime("%H:%M:%S", t) print(current_time)
how to get the system time in python
from datetime import datetime now = datetime.now() current_time = now.strftime("%H:%M:%S") print("Current Time =", current_time)
use datetime python to get runtime
from datetime import datetime start = datetime.now() # code ... print(datetime.now()-start)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us