I figured out the answer to the question I had that brought me to this page. Since no one has actually suggested the answer to my question, I thought I’d post it.
class k:
pass
a = k()
k2 = a.__class__
a2 = k2()
At this point, a and a2 are both instances of the same class (class k).