How can I remove the list
inside list(Double Square Brackets) and make it as list of type integer.
I tried choosing one element at a time:
enter code here
x = [['19'], ['19', '21']]
x = (int(x) for x in x)
But instead it results in <generator object>
.