2025-03-06 09:20:06 +08:00

11 lines
172 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 函数计时器
import guan
@guan.timer_decorator
def my_function():
import time
time.sleep(2)
print('Run finished')
for _ in range(3):
my_function()