Is 'self' keyword Mandatory inside the class Methods?
问题 I am python Begineer and i learned that first parameter inside the method should be contain some 'self' keyword but i found the following program runs without self keyword can you explain about this below is my code... class Student(object): def __init__(self,name,age): self.name = name self.age = age def get_biggest_number(*age): result=0 for item in age: if item > result: result= item return result Sam = Student("Sam",18) Peter = Student("Peter",20) Karen = Student("Karen",22) Mike =