Get your own Python server Result Size: 625 x 565
x
 
class Person:
  def __init__(self, name, age):
    self.name = name
    self.age = age
p1 = Person("John", 36)
print(p1)
<__main__.Person object at 0x15039e602100>