Understanding metaclass In Python
Let's say we define a string
some_string = "I am some_string"
print(some_string.__class__)
As expected the result should print str as some_string is indeed a stringbut can you guess what the below result is?
print(some_string.__class__.__class__)
T...
jaysinscars.hashnode.dev3 min read