xxxxxxxxxx
# Print the first rows
first_rows = df.head()
# Print the value and type of each column in the first rows
for column in first_rows.columns:
column_values = first_rows[column]
value = column_values.values[0]
value_type = type(value).__name__
print(f"Column: {column} - Value: {value} - Type: {value_type}\n")