Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Generate an HTML List
00:00
5 left

Generate an HTML List

EasyPython

Problem

Generate a list in HTML.

Implement generate_html_list(items) to convert a list of strings into one HTML unordered list. Return <ul></ul> for an empty input, and HTML-escape each item before placing it inside an <li> element.

Input: a list of strings. Output: one HTML string containing the generated unordered list.

Constraints

  • 0 <= len(items) <= 10^4
  • Each item is a string
  • Preserve the input order and duplicate values
  • Escape HTML-special characters in every item

Function Signature

def generate_html_list(items):
Interviewer

Your question is Generate an HTML List. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.