Building your first Python Class
Let’s look at building a simple class. A dice class. If we think of a dice, we know there are different types. We’ll look at something simple like a standard six sided dice. Defining the Class We need to define the class. This starts off similar to a lot of Python. We’ll have a class…