Run
class Person: def __init__(self, name, age): self.name = name self.age = age person = Person("Ram", 25) print(person)
Output