Commit a037695b by BellCodeEditor

save project

parent af05c81d
Showing with 11 additions and 6 deletions
import time import time
t1=time.time()
print('开始时间为:t1')
list1 = [] list1 = []
for a in range(0, 1000): for a in range(0, 10):
for b in range(0, 1000): for b in range(0, 10):
list1.insert(0, 0) c=1000-a-b
\ No newline at end of file list1.insert(0, 0)
t2=time.time()
print('结束时间为:t2')
t3=t2-t1
print('时间差为:t3')
\ No newline at end of file
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