Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions html_decorators.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,32 @@
def div(func):
# You have to code here!
pass
def wrapper(*arg, **kwargs):
answer_1 = f'<div>{func(*arg, **kwargs)}</div>'
return answer_1

return wrapper

def article(func):
# You have to code here!
pass
def wrapper(*arg, **kwargs):
answer_2 = f'<article>{func(*arg, **kwargs)}</article>'
return answer_2

return wrapper

def p(func):
# You have to code here!
pass
def wrapper(*arg, **kwargs):
answer_3 = f'<p>{func(*arg, **kwargs)}</p>'
return answer_3

return wrapper


# Here you must apply the decorators, uncomment this later
# @div
# @article
# @p
@div
@article
@p
def saludo(nombre):
return f'¡Hola {nombre}, ¿Cómo estás?'

Expand Down