How to use function html in Python? - with practical example

An introduction: In Python, we can use the html function from the html module to create and manipulate HTML elements programmatically. This can be useful when we need to generate HTML content dynamically in our code. Example1: Let's create a simple HTML document with a heading element using the html function. Explaining: 1. Import the html module from the html library. 2. Create an instance of the html object. 3. Use the add method to add an h1 element with the desired text. 4. Call the render method to generate the HTML content.
from html import html

doc = html()
doc.add("h1", "Hello, World!")
html_content = doc.render()
print(html_content)

Example2: Now, let's create an unordered list with three list items using the html function. Explaining: 1. Import the html module from the html library. 2. Create an instance of the html object. 3. Use a for loop to add three li elements to the ul element. 4. Call the render method to generate the HTML content.
from html import html

doc = html()
ul = doc.add("ul")
for i in range(1, 4):
    ul.add("li", f"Item {i}")
html_content = doc.render()
print(html_content)

Comments

Popular posts from this blog

What are the different types of optimization algorithms used in deep learning?

What are the different evaluation metrics used in machine learning?

What is the difference between a module and a package in Python?