例如:
In [5]: import time
In [6]: def test():
...: t0=time.clock()
...: import pandas as pd
...: import numpy as np
...: import matplotlib.pyplot as plt
...: t1=time.clock()
...: print t1-t0
...:
In [7]: test()
10.8699593575
在我的计算机上,这些语句消耗超过10秒,
所以在调试时,使用这些模块运行python脚本有点烦人。
它有很好的解决方法吗?