What Is A Class And An Object
Mon 10 August 2026
class Person:
pass
p1 = Person()
print(p1)
<__main__.Person object at 0x0000020644C5D010>
Score: 10
Category: chapter1_oop_basics
class Person:
pass
p1 = Person()
print(p1)
<__main__.Person object at 0x0000020644C5D010>
Score: 10
Category: chapter1_oop_basics