0
0
Digital Marketingknowledge~30 mins

Retargeting and remarketing in Digital Marketing - Mini Project: Build & Apply

Choose your learning style9 modes available
Understanding Retargeting and Remarketing
📖 Scenario: You are working as a digital marketing assistant for a small online store. Your manager wants you to understand how retargeting and remarketing help bring back visitors who left the website without buying anything.
🎯 Goal: Build a simple explanation and example setup that shows how retargeting and remarketing work to reconnect with potential customers.
📋 What You'll Learn
Create a list of website visitors with their visit status
Add a variable to identify visitors who did not purchase
Use a loop to select visitors eligible for retargeting
Add a final message explaining the retargeting action
💡 Why This Matters
🌍 Real World
Retargeting and remarketing help online stores remind visitors about products they viewed but did not buy, increasing chances of sales.
💼 Career
Digital marketers use these concepts to design campaigns that bring back potential customers and improve business revenue.
Progress0 / 4 steps
1
Create the list of visitors
Create a list called visitors with these exact entries: 'Alice', 'Bob', 'Charlie', 'Diana', and 'Ethan'.
Digital Marketing
Need a hint?

Use square brackets to create a list and include all five names as strings.

2
Identify visitors who did not purchase
Create a list called no_purchase with these exact visitors who did not buy anything: 'Bob', 'Diana', and 'Ethan'.
Digital Marketing
Need a hint?

Make a new list with only the visitors who left without buying.

3
Select visitors for retargeting
Use a for loop with the variable visitor to go through no_purchase and create a new list called retarget_list that includes these visitors.
Digital Marketing
Need a hint?

Start with an empty list and add each visitor from no_purchase inside the loop.

4
Add the retargeting message
Create a variable called message and set it to the exact string: 'Send ads to retarget these visitors: Bob, Diana, Ethan.'
Digital Marketing
Need a hint?

Assign the exact message string to the variable message.