python measure time
import time
start = time.time()
print("hello")
end = time.time()
print(end - start)
python measure time
import time
start = time.time()
print("hello")
end = time.time()
print(end - start)
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
"""
python calculate time taken
import time
start = time.process_time()
# your code here
print(time.process_time() - start)
python time a funciton
import time
start = time.time()
print("hello")
end = time.time()
print(end - start)
How to check how much time elapsed Python
import time
t0= time.clock()
print("Hello")
t1 = time.clock() - t0
print("Time elapsed: ", t1) # CPU seconds elapsed (floating point)
python: measure time code
import time
# Calculate the power of two for a defined range of number
def power_two(my_range):
return [x**2 for x in range(my_range)]
# Measure time
def measure_time(func):
start = time.time()
func() # any specific function to measure
end = time.time()
print(end - start)
measure_time(lambda: power_two(10000000)) # lambda permits to pass the argument of our function
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