Goal: Practice iterating over sequences.
Instructions:
Create a list of product names: products = ["Laptop", "Tablet", "Smartphone"].
Write a for loop to print each product with the message: "Available product: <product>".
Python Code:
# Step 1: Create a list of product names
products = ["Laptop", "Tablet", "Smartphone"]
# Step 2: Iterate using a for loop
for product in products:
print("Available product:", product)