Container Services Comparison in Azure
📖 Scenario: You are working as a cloud engineer for a company that wants to understand different container services offered by Azure. They want a simple comparison of key features to decide which service fits their needs best.
🎯 Goal: Create a dictionary in Python that lists three Azure container services with their key features. Then add a configuration variable to select a service to focus on. Next, write code to extract the features of the selected service. Finally, add a summary line that prints the selected service and its features.
📋 What You'll Learn
Create a dictionary called
azure_container_services with keys: 'Azure Container Instances', 'Azure Kubernetes Service', and 'Azure App Service for Containers'.Each key should map to a list of exactly three features as strings.
Create a variable called
selected_service and set it to 'Azure Kubernetes Service'.Create a variable called
features that extracts the features list of the selected_service from the dictionary.Create a variable called
summary that combines the selected_service name and its features into a single descriptive string.💡 Why This Matters
🌍 Real World
Cloud engineers often compare container services to choose the best fit for application deployment and management.
💼 Career
Understanding container service features helps in designing scalable and maintainable cloud infrastructure.
Progress0 / 4 steps