I read that the first parameter of methods is the instance the method is called on. I dont understand why when i write this
class A:
def printName(self, name):
print(name)
A.printName("asd")
I get that error TypeError: printName() missing 1 required positional argument: 'name'. What i'm missing?