Consider:
>>>jr.operators.values_list(\'id\') [(1,), (2,), (3,)]
How does one simplify further to:
[\'1\', \'2\',
Something like this?
x = [(1,), (2,), (3,)] y = [str(i[0]) for i in x] ['1', '2', '3']