<p dir="ltr">>> I'm suprised. Why not just:<br>
>><br>
>> list(str(results))<br>
>><br>
>> In other words, is there something else the list constructor should do<br>
>> with a string other than convert it to a list?<br>
>><br>
> The OP wanted the result to be a list of ints, not a list of strings.</p>
<p dir="ltr">[int(x) for x in list(str(results))] </p>