“Convertir Python en html” Réponses codées

Comment connecter Python à 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!

Convertir Python en html

print("hey")
Daniel Markoff

Réponses similaires à “Convertir Python en html”

Questions similaires à “Convertir Python en html”

Plus de réponses similaires à “Convertir Python en html” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code