Login and get codingWrite a decorator called
make_html
that wraps text inside one or more html tags.As shown in the tests decorating
get_text
withmake_html
twice should wrap the text in the corresponding html tags, so:@make_html('p') @make_html('strong') def get_text(text='I code with PyBites'): return text- would return:
<p><strong>I code with PyBites</strong></p>
Have fun and start to grok decorators!
704 out of 713 users completed this Bite.
Will you be Pythonista #705 to crack this Bite?
Resolution time: ~52 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 5.71 on a 1-10 difficulty scale.
» Up for a challenge? 💪