class in a class code example
Example 1: what is class
Class is a blueprint or template which you can create as many objects as you
like. Object is a member or instance of a class.
Class is declared using class keyword, Object is created through
new keyword mainly. A class is a template for objects. A class defines
object properties including a valid range of values, and a default value.
A class also describes object behavior.
Example 2: how to make a new class
class Fruits():
def __init__(self, name, colour, taste):
self.name = name
self.colour = colour
self.taste = taste
fruit1 = Fruits(apple, red, sweet)
print(fruit1.name)
print(fruit1.colour)
print(fruit1.taste)