Create a class named Dog
Create a dog, dog, with two attributes, name and age.
Change dog's name
Add one year to dog
class School:
"""Represents a school."""
What is the name of the defined class in the script above?
Create two classes, Zoo and Animal.
Create some animals with one attribute, name.
Create a zoo and add created animals to its animals: set attribute.
Add one more animal to the zoo.
Create classes Book, Cover, and Publisher.
Create a cover, cv with color attribute.
Create a publisher, pb, with name attribute.
Create a book, bk, with cover: Cover and publisher: Publisher attributes
Create two classes, Bird and Nest.
Create a bird, with species: str and nest: Nest attributes.
Create two classes, School and Student.
Create a school and add some students to its students: list attribute.
Add one more student to school.
Create a class that represents city
Create an instance of it and assign it to c
Assign three attributes to it, name, population and is_capital, with values a string, an integer and a boolean respectively.
Create two classes, Market and Product.
Create four products and assign a name and a price to each.
Create two markets and add some products to their products: list attribute.
Print number of products of the first market.
Print total product value of the second market.
Create a class, Car
Create a dog, my_car, with two attributes, brand and year.
Change my_car's brand
Add one year to my_car
Create a class, Shoe
Create a shoe, s, with one attribute, size.
Add 1 to s's size