4. HTML

archivo = open("hola.html", "w")
archivo.write(
    """<!DOCTYPE html>
<html lang="pt-AR">
<head>
    <meta charset = "utf-8">
    <title>Título de la Pagina</title>
</head>
<body>
    Hola!
</body>
</html>"""
)
archivo.close()

Pruebe el programa anterior.

Data file: hola.html

You have attempted of activities on this page