13
Python速度テスト-時間差-ミリ秒
コードのセクションを高速テストするためにPythonで2回比較する適切な方法は何ですか?APIドキュメントを読んでみました。タイムデルタのことを理解しているのかわかりません。 これまでのところ私はこのコードを持っています: from datetime import datetime tstart = datetime.now() print t1 # code to speed test tend = datetime.now() print t2 # what am I missing? # I'd like to print the time diff here