Answers for "can you link a python file to an html file"

2

how to connect python to 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
Posted by: Guest on October-08-2020

Code answers related to "can you link a python file to an html file"

Python Answers by Framework

Browse Popular Code Answers by Language