I have dataframe as shown in image. I want each row and columns data type using apply/map/applymap. How to get this datatype? Some columns have mixed datatype as highlighted e.g. list and str, some have list and dict.
[![samplepandasdataframe][1]][1]
[1]:
If you want to have the evaluated type value of every cell you can use
If you want to also get how many datatypes you have you can use things like
or if you want to get the values for all of the dataframe instead of by column