Answers for "how to write time in python"

1

simple time in python

t = time.localtime()            # Gets the local time
current_time = time.strftime("%H:%M", t)          # Gets the time in the desired format
current_time = "The time is " + current_time
Posted by: Guest on April-29-2020
0

how to time python code

from timer import Timer
t = Timer()
t.start()
# Run stuff here.
t.stop()
Posted by: Guest on September-18-2020
9

time module in python

import time
seconds = time.time()
print("Seconds since epoch =", seconds)
Posted by: Guest on July-30-2020
1

time in python code

import datetime

x = datetime.datetime.now()

print(x)
Posted by: Guest on April-04-2021

Code answers related to "how to write time in python"

Python Answers by Framework

Browse Popular Code Answers by Language