“converter python em html” Respostas de código

Como conectar o python ao html

data = [1, 2, 3, 4]


def data_to_html_table(data):
    html = '<table><tbody>'
    for item in data:
        html += '<tr><td>' + str(item) + '</td></tr>'
    html += '</tbody></table>'
    return html

print data_to_html_table(data)

#credit to stackoverflow.com
You on Kazoo!

converter python em html

print("hey")
Daniel Markoff

Respostas semelhantes a “converter python em html”

Perguntas semelhantes a “converter python em html”

Mais respostas relacionadas para “converter python em html” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código