Hi I have a list where each element is one element list: https://i.stack.imgur.com/JSH9j.png
[['2199822281'], ['2199822390'], ['2199822392'], ['2199822369'], ['2199822370'], ['2199822284'], ['2199822281']]
What I want is to convert it to a list of ints in python how do I do that?
DESIRED OUTPUT
[2199822281, 2199822390 ...,2199822281]
Please refer to the image