0
0
Digital Marketingknowledge~30 mins

Why international expansion multiplies addressable market in Digital Marketing - See It in Action

Choose your learning style9 modes available
Why International Expansion Multiplies Addressable Market
📖 Scenario: You are a marketing analyst working for a small business that currently sells products only in one country. Your manager wants to understand how expanding to other countries can increase the number of potential customers.
🎯 Goal: Build a simple data model and explanation that shows how adding new countries multiplies the total addressable market (potential customers).
📋 What You'll Learn
Create a dictionary with the current country and its market size
Add a list of new countries to consider for expansion
Calculate the total addressable market by summing all countries' market sizes
Add a final statement explaining the multiplication effect of international expansion
💡 Why This Matters
🌍 Real World
Businesses use market size data to decide where to expand and how much growth potential exists in new countries.
💼 Career
Marketing analysts, business strategists, and product managers often analyze addressable markets to plan international growth.
Progress0 / 4 steps
1
Create the initial market data
Create a dictionary called market_sizes with one entry: 'USA': 300 representing 300 million potential customers.
Digital Marketing
Need a hint?

Use curly braces to create a dictionary with one key-value pair.

2
Add new countries for expansion
Create a list called new_countries with these entries: 'Canada', 'UK', and 'Australia'.
Digital Marketing
Need a hint?

Use square brackets to create a list of country names as strings.

3
Calculate total addressable market
Add these new countries to market_sizes with these market sizes: 'Canada': 38, 'UK': 67, and 'Australia': 25. Then calculate the total market size in a variable called total_market by summing all values in market_sizes.
Digital Marketing
Need a hint?

Use dictionary assignment to add new entries. Use sum() on market_sizes.values() to get total.

4
Explain the multiplication effect
Create a string variable called explanation that says:
'Expanding internationally multiplies the addressable market by adding customers from multiple countries, increasing growth potential.'
Digital Marketing
Need a hint?

Assign the exact sentence as a string to the variable explanation.