I was looking at this post, but I don't have the privilege to add a comment.
My question is:
> results = [int(i) for i in results]
>>> results = ["1", "2", "3"]
>>> results = [int(i) for i in results]
>>> results
[1, 2, 3]
What if I need to change only the first element in the list, how can I do that? By indexing? so something like:
> results=[int(1) for i in results]