I have a python list which I imported from a CSV and I have sorted the data but know I need to find out how can I convert my list to a html table output. T
import csv
with open('bike_results.csv', 'r') as f:
reader = csv.reader(f, delimiter=' ',
quotechar='|', quoting=csv.QUOTE_MINIMAL)
bike_list = list(reader)
print(bike_list)