Python 练习

1. 题目

时间函数举例

2. 分析

3. 实例

点我看答案
import time

start = time.process_time()
for i in range(10000):
    print(i)
end = time.process_time()
print(f'different is {end - start}')

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""