0
0
Digital Marketingknowledge~30 mins

Twitter/X marketing tactics in Digital Marketing - Mini Project: Build & Apply

Choose your learning style9 modes available
Twitter/X Marketing Tactics
📖 Scenario: You are managing a small business's Twitter/X account. You want to organize your marketing tactics clearly to plan your posts and campaigns effectively.
🎯 Goal: Create a structured list of Twitter/X marketing tactics, add a priority level, filter the tactics by priority, and finalize the plan with a summary.
📋 What You'll Learn
Create a list called tactics with exactly these entries: 'Use hashtags', 'Post regularly', 'Engage with followers', 'Run contests', 'Share user content'
Create a dictionary called priority assigning these priorities: 'Use hashtags': 'High', 'Post regularly': 'High', 'Engage with followers': 'Medium', 'Run contests': 'Low', 'Share user content': 'Medium'
Create a list called high_priority_tactics that includes only tactics with priority 'High'
Create a summary string called summary that states the number of high priority tactics
💡 Why This Matters
🌍 Real World
Organizing marketing tactics helps social media managers plan campaigns effectively and focus on the most important actions.
💼 Career
Marketing professionals use such structured planning to improve engagement and reach on platforms like Twitter/X.
Progress0 / 4 steps
1
Create the list of Twitter/X marketing tactics
Create a list called tactics with these exact entries in this order: 'Use hashtags', 'Post regularly', 'Engage with followers', 'Run contests', 'Share user content'
Digital Marketing
Need a hint?

Use square brackets [] to create a list and separate items with commas.

2
Assign priority levels to each tactic
Create a dictionary called priority with these exact key-value pairs: 'Use hashtags': 'High', 'Post regularly': 'High', 'Engage with followers': 'Medium', 'Run contests': 'Low', 'Share user content': 'Medium'
Digital Marketing
Need a hint?

Use curly braces {} to create a dictionary with key-value pairs separated by colons.

3
Filter tactics with high priority
Create a list called high_priority_tactics that includes only tactics from tactics whose priority in priority is exactly 'High'. Use a list comprehension with variables tactic and priority.
Digital Marketing
Need a hint?

Use a list comprehension to select items where the priority is 'High'.

4
Create a summary of high priority tactics count
Create a string variable called summary that says exactly: 'Number of high priority tactics: X' where X is the number of items in high_priority_tactics. Use an f-string.
Digital Marketing
Need a hint?

Use len() to get the count and an f-string to format the message.