I am using a SQLite3 db file to retrieve data and store it in a variable so that I can use it to display the results on a HTML table.
This is how I am storing the results from the query:
test = c.execute("SELECT column_name from table_name LIMIT 11")
However, when I try to display it in the table, using "{%for x in test%}", the output is being displayed like this: (1.234,). What do I need to change for the output to look like this: 1.234 so without the bracket and comma?