A Python install on Kali identifies 187 subclasses of the object class through this query:

kali@kali:~$ python3 -c 'print(len("".__class__.__mro__[1].__subclasses__()))'

Yet the same query in...