Interview Guides

Given an integer n, return a list of tuples where each tuple contains a number from 1 to n and its label: "even" if the number is even, otherwise "odd". The output must be built using a Python list comprehension.
0 <= n <= 10^4