计算执行特定代码所花费的时间
━━━━━━━━━━━━━━━━━━━━━━
import time
start time time.time()
a=1
b=2
c=a+b
print(c) #3
end time= time.time()
total time= end time- start_time
print("Time:"total time)
#('Time:',1.1205673217773438e-85)
标签:end,花费,代码,Time,start,特定,time,print,total
From: https://www.cnblogs.com/nxhujiee/p/17508258.html