Which of these statements are true about methods?

Methods are functions that belong to a classMethods have a self parameterMethods have to change the attributes of a classMethods are variables that belong to a class

Right! Methods are functions that belong to a class, and they use the self parameter to point to the instance they belong to.

So close! Methods are functions that belong to a class, and they use the self parameter to point to the instance they belong to.