Commit 7dc66cad by BellCodeEditor

save project

parent 92449b0c
Showing with 15 additions and 0 deletions
import time
s_t=time.time()
list1 = []
print(s_t)
for a in range(0, 1000):
for b in range(0, 1000):
list1.insert(0, 0)
e_t=time.time()
print(e_t-s_t)
\ No newline at end of file
a=[12,17,26,15,29,100000000000000000000000000000000000000000000000000]
for i in range(0,5):
for j in range(0,5):
if a[j]>a[j+1]:
a[j],a[j+1]=a[j+1],a[j]
print(a)
n=len(a)
print(n)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment