在我的打印语句中为代码块添加计时

时间:2018-10-24 17:05:14

标签: python performance dataframe timing

我在下面有以下代码段。我有打印语句,因此它将在控制台窗口中打印当前正在处理的代码的哪一部分。我想知道是否还有一种方法可以增加在打印语句中计算每个代码块所花费的时间?

print('Starting Backtest Instantiation')
backtester_example = Backtest(new_data_sample, position_logic_example)

print('Running Output DF')
aggstats = backtester_example.agg_stats()
stats_df = backtester_example.output_all_metrics_as_df()

print('Running Tabular Trades')

compact_data = backtester_example.tabular_trades()
print('FinishedTabularTrades')

0 个答案:

没有答案