Browse Source

Update 98_profiler.py

blueloveTH 7 months ago
parent
commit
839bf0ed1c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      scripts/98_profiler.py

+ 4 - 4
scripts/98_profiler.py

@@ -1,11 +1,11 @@
-from pkpy import *
 import time
 import time
 
 
 def costly_func(n: int):
 def costly_func(n: int):
-    time.sleep(n)
+    time.sleep(n)               # 2s
+    time.sleep(1)               # 1s
 
 
 x = 1
 x = 1
 y = 2
 y = 2
-costly_func(2)
+costly_func(2)      # 3s
 
 
-time.sleep(1)
+time.sleep(1)       # 1s