#create  fruits Class has the following three properties: name-kind-color

class Fruits:

    def __init__(self, name, kind, color):

        self.name = name

        self.kind = kind

        self.color = color