Decorators
Aguiart
python
03/02/2025 10:09 PM
328 B
20
Indexable
from datetime import datetime
def horarios(func):
def wrapper():
print(datetime.now())
func()
print(datetime.now())
return wrapper
@horarios
def realizando():
print("Atualizando")
realizando()Editor is loading...
Leave a Comment