I have a list of data, and I need to verify that all elements are integers or string , or any other data type. Is it possible to check all the elements or need to be one by one?
For example:
Lista = [0,1,2,3,4,5,6,"7"]
I need a function that tells me whether they are all integers or not.