"Removing models at once" tip (for beginners)

That makes no difference. Setting an instance to None is the cleanest way to reduce the reference count of a class instance and all its members. Clearing the class’ dictionary explicitly won’t make a difference at all.
There is no added benefit to using “del”, it just makes it more confusing. (because “del” sounds like you’re deleting the instance, whereas in reality you’re just reducing its reference count).