Question: Python Given a string of text and HTML formats to be applied to the string, generate a valid HTML string. text = 'ABCDEFGHIJ' format =
Python
Given a string of text and HTML formats to be applied to the string, generate a valid HTML string.
text = 'ABCDEFGHIJ' format = { 'bold': [(0,4)], 'italics': [(2,6)] } output = 'ABCDEFGHIJ' Note: You need to close at index 4 and then add it back in order to have valid HTML tags
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
