We are reading data from MongoDB Collection. Collection column has two different values (e.g.: (bson.Int64,int) (int,float) ).
Collection
(bson.Int64,int) (int,float)
I a
I am assuming you are looking to get the data type of the data you read.
input_data = [Read from Mongo DB operation]
You can use
type(input_data)
to inspect the data type