Commit 8c90ff69 by BellCodeEditor

save project

parent eff41c8c
Showing with 4 additions and 1 deletions
import time import time
star=time.time() star=time.time()
print('开始时间;',star)
list1 = [] list1 = []
for a in range(0, 1000): for a in range(0, 1000):
for b in range(0, 1000): for b in range(0, 1000):
list1.insert(0, 0) list1.append(0)
finish=time.time() finish=time.time()
print('结束时间',finish)
all=finish-star all=finish-star
print('时间:',all) print('时间:',all)
\ 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