Jason Nwakaezejaysinscars.hashnode.dev·Apr 1, 2023Understanding metaclass In PythonLet'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...2 likes·121 readsPythonAdd a thoughtful commentNo comments yetBe the first to start the conversation.