vote up 4 vote down star
1

Hello there,

I have a tuple of tuples from MySQL query like this:

T1 = (('13', '17', '18', '21', '32'),
      ('07', '11', '13', '14', '28'),
      ('01', '05', '06', '08', '15', '16'))

I'd like to convert all the string elements into integers and put it back nicely to list of lists this time:

T2 = [[13, 17, 18, 21, 32], [7, 11, 13, 14, 28], [1, 5, 6, 8, 15, 16]]

I tried to achieve it with "eval" but didn't get any decent result yet.

flag

Perhaps consider a different database adapter module? I know the PostgreSQL adapter modules will return results like your T2 set. – kquinn Mar 13 at 11:06

7 Answers

vote up 12 vote down check

int() is the Python function to convert a string into an integer value.

If you know the structure of your list (that it simply contains lists, only one level), you could do this:

T2 = [map(int, x) for x in T1]
link|flag
Thank you! That's exactly what I needed. – elfuego1 Mar 13 at 11:07
Great! Actually, the example given also works for "naked" numbers in the input, but will wrap them in one-element lists. – unwind Mar 13 at 11:10
@unwind Nice answer – neo Mar 13 at 11:13
doesn't work in py3k – SilentGhost Mar 13 at 11:27
vote up 0 vote down

I would rather prefer using only comprehension lists:

[[int(y) for y in x] for x in T1]
link|flag
vote up 0 vote down

I would agree with everyones answers so far but the problem is is that if you do not have all integers they will crash.

If you wanted to exclude non-integers then

T1 = (('13', '17', '18', '21', '32'),
      ('07', '11', '13', '14', '28'),
      ('01', '05', '06', '08', '15', '16'))
new_list = list(list(int(a) for a in b) for b in T1 if a.isdigit())

This yields only actual digits. The reason I don't use direct list comprehensions is because list comprehension leaks their internal variables.

link|flag
vote up 0 vote down

Using list comprehensions:

t2 = [map(int, list(l)) for l in t1]
link|flag
vote up 0 vote down

If it's only a tuple of tuples, something like rows=[map(int, row) for row in rows] will do the trick. (There's a list comprehension and a call to map(f, lst), which is equal to [f(a) for a in lst], in there.)

Eval is not what you want to do, in case there's something like __import__("os").unlink("importantsystemfile") in your database for some reason. Always validate your input (if with nothing else, the exception int() will raise if you have bad input).

link|flag
vote up 4 vote down

You can do this with a list comprehension:

T2 = [[int(column) for column in row] for row in T1]

The inner list comprehension ([int(column) for column in row]) builds a list of ints from a sequence of int-able objects, like decimal strings, in row. The outer list comprehension ([... for row in T1])) builds a list of the results of the inner list comprehension applied to each item in T1.

The code snippet will fail if any of the rows contain objects that can't be converted by int. You'll need a smarter function if you want to process rows containing non-decimal strings.

If you know the structure of the rows, you can replace the inner list comprehension with a call to a function of the row. Eg.

T2 = [parse_a_row_of_T1(row) for row in T1]
link|flag
vote up 1 vote down

use int() to convert string to int

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.