Your question is Even Odd Status List Comprehension. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
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.
def even_odd_status(n):