Let us say that we have a column with the following values:
Apple, Mango, Orange, 123, 987, Guava, 01/01/2020
python recognizes this column as an "object" data type automatically. I have been given a task to count the number of data types in a single column. For a human eye, it is evident that there are 3 data types in the above column values: string, int, date. However, I am unable to come up with a code which could do this segregation. Looking forward to the guidance! Thank you!