Complete the code to print the name of the cloud provider that starts with 'A'.
cloud_provider = '[1]' print(cloud_provider)
The cloud provider starting with 'A' is Azure.
Complete the code to assign the abbreviation for Google Cloud Platform.
cloud_abbr = '[1]' print(cloud_abbr)
The correct abbreviation for Google Cloud Platform is GCP.
Fix the error in the code to correctly print the cloud provider name stored in the variable.
provider = 'AWS' print([1])
The variable storing the cloud provider name is 'provider'. Using it without quotes prints its value.
Fill both blanks to create a list of popular cloud providers and print the second one.
clouds = [[1], [2]] print(clouds[1])
The list contains 'AWS' and 'Azure'. Index 1 refers to the second item, which is 'Azure'.
Fill all three blanks to create a dictionary mapping cloud providers to their abbreviations and print the abbreviation for Azure.
cloud_dict = [1]: [2], [3]: 'GCP'} print(cloud_dict['Azure'])
The dictionary keys are cloud provider names as strings. The values are their abbreviations. 'Azure' key maps to 'AZR' or 'Azure' abbreviation. Here, 'AWS' and 'Azure' are keys and values respectively.