Interview Guides

Write a Python function that takes an integer n and returns a list of pairs for all numbers from 1 to n inclusive. Each pair should contain the number and a string indicating whether it is "even" or "odd". Use a list comprehension to build the result.
0 <= n <= 10^4