I am nex to python and want to retrieve values from MySQL into a list in python 3.x:
curb.execute("SELECT URL FROM test")
URLs_old = curb.fetchall()
results in:
[('https://www.test.de',), ('https://www.bla.de',)]
while I would need:
['https://www.test.de', 'https://www.bla.de']
How can the later one be achived?