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!
730 out of 741 users completed this Bite.
Will you be the 731st person to crack this Bite?
Resolution time: ~52 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 5.68 on a 1-10 difficulty scale.
» Up for a challenge? 💪