I am not able to understand this code and the concept behind such output. I am creating two objects but only one "Hello" is printed in console. I have tried to figure out through "id" but both the ids are different from each other:
class lol:
print("Hello") # Output: Hello
# 16377072 16378920
h = lol()
k = lol()
print(id(h), id(k))