This dataset contains a collection of popular fruits with basic attributes.
fruits.csv
id – unique identifier
name – name of the fruit
color – color of the fruit
taste – taste profile
Load the dataset in Python using pandas:
import pandas as pd
fruits = pd.read_csv("fruits.csv")
print(fruits.head())