5 lines
116 B
Text
5 lines
116 B
Text
start = time
|
|
for i in range(1,100000)
|
|
end for
|
|
duration = time - start
|
|
print "Process took " + duration + " seconds"
|