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)