Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Challenge solved by Luis_Cruz. Thanks a lot! #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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