use datetime python to get runtime
from datetime import datetime
start = datetime.now()
# code ...
print(datetime.now()-start)
use datetime python to get runtime
from datetime import datetime
start = datetime.now()
# code ...
print(datetime.now()-start)
python execute time
#its tricky and so much easy
#python execute time counter
#coded by Luban
import time
start_time = time.time()
while True:
x = time.time() - start_time
x = int(x)
print('Current Time = ',str(x))
check runtime python
import timeit
code = """[4, 2, 3, 1, 5].sort()"""
execution_time = timeit.timeit(code, number=1)
print(execution_time)
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