Question
Fill in the blanks to complete the endangered_animals function. This function accepts a dictionary containing a list of endangered animals (keys) and their remaining population
Fill in the blanks to complete the endangered_animals function. This function accepts a dictionary containing a list of endangered animals (keys) and their remaining population (values). For each key in the given animal_dict dictionary, format a string to print the name of the animal, with one animal name per line.
def endangered_animals(animal_dict):
result = ""
# Complete the for loop to iterate through the key and value items
# in the dictionary.
for ___
# Use a string method to format the required string.
result += ___
return result
print(endangered_animals({"Javan Rhinoceros":60, "Vaquita":10, "Mountain Gorilla":200, "Tiger":500}))
# Should print:
# Javan Rhinoceros
# Vaquita
# Mountain Gorilla
# Tiger
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started