Instruction
First, let's do a quick recap of tuple basics before we move on to their typical applications.

Tuples are a bit similar to lists, but they are immutable—once you create a tuple, you can't change it. Tuples frequently store values of multiple types. The codes below present basic tuple operations in Python.
- Define a tuple (name, age, nationality, city):
- Access second element:
- Access second and third element:
- Iterate over tuple:
- Check if tuple contains item:
- Unpack tuple:
person = ('Mark', 28, 'English', 'London')
person[1]
person[1:3]
for item in person:
if item in person:
name, age, nationality, city = person
Exercise
Let's do a warm-up exercise! Write a function named print_adult_status(person) that accepts a tuple in the format shown in the template code. The function should check if the person is 18 years or older and print either:
{name} is of legal age.
or:
{name} is not of legal age.
A person should have the following format:
(name, age, nationality, city)
Stuck? Here's a hint!
You will need to use person[0] (name) and person[1] (age) in your solution.



