0
0
Digital Marketingknowledge~30 mins

Ad creative formats (image, video, carousel) in Digital Marketing - Mini Project: Build & Apply

Choose your learning style9 modes available
Ad Creative Formats: Image, Video, Carousel
📖 Scenario: You are working as a digital marketing assistant helping a small business create ads for social media platforms. The business wants to understand different ad creative formats to choose the best one for their campaign.
🎯 Goal: Build a simple guide that lists three common ad creative formats: image, video, and carousel. For each format, include a short description and an example use case.
📋 What You'll Learn
Create a dictionary called ad_formats with keys as format names and values as descriptions
Add a variable called example_use_case with a short sentence describing a use case for carousel ads
Use a for loop with variables format_name and description to iterate over ad_formats.items()
Add a final summary string called summary that combines the number of formats and a closing statement
💡 Why This Matters
🌍 Real World
Digital marketers often need to understand and explain different ad creative formats to clients or teams to choose the best approach for campaigns.
💼 Career
Knowing ad creative formats helps marketing professionals create effective ads and communicate clearly with designers and clients.
Progress0 / 4 steps
1
Create the ad formats dictionary
Create a dictionary called ad_formats with these exact entries: 'Image' with value 'A single static picture used to grab attention.', 'Video' with value 'A moving visual that tells a story or shows a product in action.', and 'Carousel' with value 'Multiple images or videos that users can swipe through.'
Digital Marketing
Need a hint?

Use curly braces {} to create a dictionary with the exact keys and values given.

2
Add an example use case for carousel ads
Add a variable called example_use_case and set it to the string 'Showcase multiple products in one ad to increase engagement.'
Digital Marketing
Need a hint?

Assign the exact string to the variable example_use_case.

3
Iterate over ad formats with a for loop
Use a for loop with variables format_name and description to iterate over ad_formats.items(). Inside the loop, write a comment that says # Processing {format_name} format where {format_name} is the current format name.
Digital Marketing
Need a hint?

Use the exact variable names format_name and description in the for loop.

4
Add a summary string
Add a string variable called summary that combines the number of formats (use len(ad_formats)) and the text ' ad creative formats explained.'. Use an f-string to create this message.
Digital Marketing
Need a hint?

Use an f-string with len(ad_formats) inside curly braces to create the summary.