can I use python with html code example
Example 1: 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
Example 2: html in python
from flask import Flask
app=Flask('app')
@app.route('/')
def run_code():
return '<!-- Reference external html file here... -->'
app.run(host='0.0.0.0', port=8080)