0
0
Digital Marketingknowledge~30 mins

Lead scoring and nurturing in Digital Marketing - Mini Project: Build & Apply

Choose your learning style9 modes available
Lead Scoring and Nurturing
📖 Scenario: You work in a marketing team that wants to organize leads based on their interest and engagement. You will create a simple lead scoring system and then plan nurturing steps for leads with different scores.
🎯 Goal: Build a lead scoring dictionary, set a score threshold, filter leads who need nurturing, and assign nurturing actions.
📋 What You'll Learn
Create a dictionary of leads with their engagement scores
Set a score threshold to identify leads needing nurturing
Filter leads below the threshold
Assign nurturing actions to filtered leads
💡 Why This Matters
🌍 Real World
Marketing teams use lead scoring to prioritize which potential customers to focus on and nurture, improving sales efficiency.
💼 Career
Understanding lead scoring and nurturing is essential for roles in digital marketing, sales operations, and customer relationship management.
Progress0 / 4 steps
1
Create the lead scores dictionary
Create a dictionary called lead_scores with these exact entries: 'LeadA': 75, 'LeadB': 40, 'LeadC': 55, 'LeadD': 30, 'LeadE': 90.
Digital Marketing
Need a hint?

Use curly braces to create a dictionary with keys as lead names and values as scores.

2
Set the nurturing score threshold
Create a variable called nurture_threshold and set it to 60.
Digital Marketing
Need a hint?

Just assign the number 60 to the variable named nurture_threshold.

3
Filter leads needing nurturing
Create a dictionary called leads_to_nurture using dictionary comprehension. Include only leads from lead_scores whose score is less than nurture_threshold.
Digital Marketing
Need a hint?

Use dictionary comprehension with for lead, score in lead_scores.items() and an if condition.

4
Assign nurturing actions
Create a dictionary called nurturing_plan using dictionary comprehension. For each lead in leads_to_nurture, assign the action 'Send follow-up email'.
Digital Marketing
Need a hint?

Use dictionary comprehension with for lead in leads_to_nurture and assign the same string action.