使用Python timeit 模組對程式碼段進行計時
介紹
簡介時間分段對於效能測試和最佳化至關重要。 Python 的 timeit 模組提供了一個方便的方法來測量和比較不同程式碼區塊的運行時間。
問題一個 Python 使用者有一個執行資料庫更新操作的腳本。他們想要測量更新語句執行並將結果寫入檔案所需的時間。使用者嘗試過使用timeit模組,但實現起來遇到困難。
解答<code class="python">import timeit</code>首先導入🎜>:
<code class="python">setup = """ import ibm_db conn = ibm_db.pconnect("dsn=myDB","usrname","secretPWD") query_stmt = ibm_db.prepare(conn, update) """</code>建立一個setup string:
<code class="python">stmt = """ ibm_db.execute(query_stmt) """</code>建立語句字串:
<code class="python">timer = timeit.Timer(stmt, setup) avg_time = timer.timeit(number=100)</code>執行計時:
<code class="python">myfile = open("results_update.txt", "a") myfile.write("Average execution time: {}\n".format(avg_time)) myfile.close()</code>將結果寫入檔案:
一旦計時完成,寫入指定檔案的平均執行時間。
透過以下步驟,使用者可以使用Python的timeit模組有效測量資料庫更新語句的執行時間並將其寫入檔案。以上是如何使用Python的timeit模組測量資料庫更新執行時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!