Answers for "get the date and timepython"

1

how to print time python 3

import datetime
now = datetime.datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))
# key: https://strftime.org/
Posted by: Guest on March-17-2020
1

print time in python

import time

t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
print(current_time)
Posted by: Guest on June-23-2020

Code answers related to "get the date and timepython"

Python Answers by Framework

Browse Popular Code Answers by Language