2. Print the list to ensure it has been created correctly.
3. Create a tuple named vegetables containing the items: "carrot", "broccoli", "lettuce".
4. Print the tuple.
Right Answer:
# Step 1
fruits = ["apple", "banana", "cherry"]
# Step 2
print(fruits) # Output: ['apple', 'banana', 'cherry']
# Step 3
vegetables = ("carrot", "broccoli", "lettuce")
# Step 4
print(vegetables) # Output: ('carrot', 'broccoli', 'lettuce')