when i fetch data from a table in SQlite3 it formats each value ('value',) the data in the column: Regi Bob Jeff
how to i remove/ stop the extra round brackets and comma?
c.execute('SELECT Name from information')
data = c.fetchall()
valNameNS = data
valName = str(data)
valNameL = list(valNameNS)
print(valNameL)
[('Regi',), ('Bob',), ('Jeff',)]
Thanks