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
In python member function of a class need explicit self argument. Same as implicit this pointer in C++. For more details please check out this page.
self
this