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 acomplished #20

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
23 changes: 17 additions & 6 deletions html_decorators.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,33 @@
def div(func):
# You have to code here!
pass
def wrapper(*args,**kwargs):
div_content = func(*args,**kwargs)
return f'<div> {div_content} </div>'
return wrapper


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



def p(func):
# You have to code here!
pass
def wrapper(*args, **kwargs):
p_content = func(*args,**kwargs)
return f'<p> {p_content} </p>'
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