Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Programming With Visual Basic .NET

Authors: Carsten Thomsen

2nd Edition

1590590325, 978-1590590324

More Books

Students also viewed these Databases questions