Untitled

Anonymous
plain_text
05/25/2024 5:18 AM
204 B
15
Indexable
class Person:
  def __init__(self, name, age):
    self.name = name
    self.age = age

p1 = Person("John", 36)

print(p1.name)
print(p1.age)
Editor is loading...
Leave a Comment