Python: Dunder Init Method

class Student:
    def __init__(self, name):
        self.name = name
Andrea Perlato