I don\'t understand how classes are used. The following code gives me an error when I try to use the class.
class MyStuff: def average(a, b, c): # Get th
You never created an instance.
You've defined average as an instance method, thus, in order to use average you need to create an instance first.