How to measure the time of adding elements into a list in Python

1 Answer

0 votes
import time
 
start = time.time()
 
lst = []
for i in range(100000):
    lst.append(i)
     
end = time.time()
 
print (end - start, "seconds")
 
 
 
 
'''
run:

0.02197122573852539 seconds

'''


 



answered Mar 3, 2023 by avibootz
edited Mar 3, 2023 by avibootz
...