Untitled
RonGut23
plain_text
a year ago
250 B
20
Indexable
from datetime import datetime
def tiempo_aula(funcao):
def horas():
print(datetime.now())
funcao()
print(datetime.now())
return horas
@tiempo_aula
def aula_agora():
print("Estudando..")
aula_agora()
Editor is loading...
Leave a Comment