Python - Polymorphism and Dynamic Behavior
Write a polymorphic function describe that returns:
- "Number: <value>" if input is int or float
- "Text: <value>" if input is str
- "List of length <length>" if input is list
- "Unknown" otherwise
What will describe([1, 2, 3]) return?
