使用sage计算两个python脚本执行时间差的方法
Way to calculate the execution time difference of two python scripts using sage
我有两个 python 脚本 Des.py
和 DDes.py
,我想使用 sage 脚本计算它们的执行时间差。
我真的不明白你为什么要用鼠尾草来做这件事。只需使用时间模块:
import time
Start_Time = time.time()
#execute script
Execution_Time = time.time() - Start_Time
Execution_Time 以秒为单位给出总执行时间。
此致,
伤害
我有两个 python 脚本 Des.py
和 DDes.py
,我想使用 sage 脚本计算它们的执行时间差。
我真的不明白你为什么要用鼠尾草来做这件事。只需使用时间模块:
import time
Start_Time = time.time()
#execute script
Execution_Time = time.time() - Start_Time
Execution_Time 以秒为单位给出总执行时间。
此致,
伤害