I'm currently making a discord bot, and one of it's commands involves pulling data from a SQL table, for this I'm using the AioOdbc module, which almost exactly the same as Pyodbc, with the only real difference being that it doesn't block in asynchronous functions.
Which outputs in this format.
[('Item1',),('Item2',)]
How can I have it output something which is a bit nicer to read? Possibly something like
Item1, Item2
Any help is appreciated!