Listagem 09 - Página 307: Criando a página em Python

##############################################################################
# Parte do livro Introdução à Programação com Python
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Quarta Edição - Março/2024 - ISBN 978-85-7522-886-9
#
# Site: https://python.nilo.pro.br/
#
# Arquivo: capítulo 09/09.1395 - Sem Título.py
# Página: 307
# Título: Criando a página em Python
##############################################################################
with open("página.html", "w", encoding="utf-8") as página:
    página.write("""
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<title>Título da Página</title>
</head>
<body>
Olá!""")
    for linha in range(10):
        página.write(f"<p>{linha}</p>\n")
    página.write("""
</body>
</html>""")
Clique aqui para baixar o arquivo