timer Decorator
This commit is contained in:
21
decorator/timer.py
Normal file
21
decorator/timer.py
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
import time
|
||||
|
||||
def timer(func):
|
||||
def wrapper(*args, **kwargs):
|
||||
start_time = time.time()
|
||||
|
||||
result = func(*args,**kwargs)
|
||||
|
||||
end_time = time.time()
|
||||
print(f'Methode {func.__name__} - Laufzeit {end_time - start_time:.4f}s')
|
||||
return result
|
||||
return wrapper
|
||||
|
||||
@timer
|
||||
def summe(n):
|
||||
return f"Summe: {sum(range(n))}"
|
||||
|
||||
|
||||
print(summe(1000000))
|
||||
|
Reference in New Issue
Block a user