Artificial Intelligence
Please fill the required field.

Create a list of tuples where each tuple contains the name and age


Sure! Here’s a list of tuples where each tuple contains a name and an age: ```python people = [ ("Alice", 30), ("Bob", 25), ("Charlie", 35), ("Diana", 28), ("Ethan", 22) ] ``` Feel free to modify the names and ages as needed!