Python Professional — Hard What is the output of the following? import weakref class Obj: pass obj = Obj() ref = weakref.ref(obj) print(ref() is obj) del obj print(ref()) A True then None B True then True C False then None D True then Obj instance Show explanation