Example: how to connect python to html data = [1, 2, 3, 4] def data_to_html_table(data): html = ' ' for item in data: html += ' ' + str(item) + '
確定! 回上一頁