Exercise: The Data Inspector
Explore how to write a Python function that inspects an object's type and manually checks its length without using len(). Understand object identity and behavior by utilizing the __len__ special method and dir() to create a debugging tool for diverse data types.
We'll cover the following...
We'll cover the following...
Problem statement
You are writing a debugging utility for a generic data ...