I have a problem when i extract values from a DB with sqlite3. Everytime that i extract values ,for example, one number have this format:
[(6,)]
And is like tuple.
I want only the 6 value WITHOUT , and ( and [
Thanks for your help in advanced!
x = [(6,)]andx[0][0]?