我想計算各種語言的代碼的執行時間,如java,python,javascript。如何獲得這些代碼的執行時間。是否有任何工具可用於python包或任何其他工具來通過傳遞文件(任何文件java或python)路徑來計算執行時間。請分享您的建議。如何獲取代碼的執行時間?
我知道通過在Python代碼中使用時間模塊獲取執行時間。如何在python中執行Javascript和java代碼並獲得通用函數的執行時間。
我試過下面的方法。
import time
def get_exectime(file_path): # pass path of any file python,java,javascript, html, shell
start_time=time.time()
# execute the file given here. How to execute all file types here?
end_time=time.time()
exec_time=end_time-start_time
print(exec_time)
有沒有其他方法可以實現這個目標?