Python时间执行

代码示例

11
0

如何在python中记录执行时间

import time

start = time.time()
print("hello")
end = time.time()
print(end - start)
6
0

python时间执行

import time
start_time = time.time()
print("Hello") 	# Hello
end_time = time.time()
total_time = end_time - start_time
print("Time: ", total_time)
6
0

python如何衡量代码运行时间

import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))
4
0

记录代码运行python的时间

from time import time

start = time()
#code here
print(f'Time taken to run: {time() - start} seconds'
2
0

python-执行时间

import time
from datetime import timedelta

start_time = time.monotonic()
# do your work here
end_time = time.monotonic()
print(timedelta(seconds=end_time - start_time))
0
0

python时间执行

#Python time execution
import time
start_time = time.time()
print("Hello") 	# Hello
end_time = time.time()
total_time = end_time - start_time
print("Time: ", total_time)

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................