Task
📝 **Task:** Write \`describe(x)\` returning "int", "str", or "other" depending on type of x. Print describe(42), describe("hi"), describe([1,2]) on three lines. Expected:\nint\nstr\nother
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.