Exercise: Check Monster Character Exists Description In this series of exercises, you will create functions to create, modify and examine dictionaries that represent characters in an animated film, and the cast members who voice the characters. The keys of the dictionary will be character names. The values in the dictionary will be voice actor names. For this exercise, you will create a function that checks if a character is already in the dictionary. Files   monsterfunctions.py : set of functions to work with monster cast dictionaries.   Function Name has_character Parameters   monsters: a dictionary character: a string, the name of a character   Action Checks if character is a key in monsters. Return Value True if character is a key in monsters, otherwise False. Examples monsters = create_monster_cast() monsters = add_cast_member(monsters, "Mike", "William Crystal") has_character(monsters, "Mike") -> True has_character(monsters, "Sully") -> False

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter8: Arrays
Section: Chapter Questions
Problem 7E
icon
Related questions
Question

Exercise: Check Monster Character Exists

Description

In this series of exercises, you will create functions

to create, modify and examine dictionaries that

represent characters in an animated film, and the

cast members who voice the characters. The

keys of the dictionary will be character names.

The values in the dictionary will be voice actor

names.

For this exercise, you will create a function that

checks if a character is already in the dictionary.

Files

 

  • monsterfunctions.py : set of functions to work with monster cast dictionaries.

 

Function Name

has_character

Parameters

 

  • monsters: a dictionary
  • character: a string, the name of a character

 

Action

Checks if character is a key in monsters.

Return Value

True if character is a key in monsters, otherwise False.

Examples

monsters = create_monster_cast()

monsters = add_cast_member(monsters, "Mike", "William Crystal")

has_character(monsters, "Mike") -> True

has_character(monsters, "Sully") -> False

1 # This function creates a dictionary
create_monster_cast():
2 def
3
4
6 # This function adds the monsters to the dictionary
def add_cast_member (monsters, character, cast member):
7
8
d1 = ()
return di
15
16
9
10
11
12 # This function returns the name of cast member associated with the character
13 def get_cast_member(monsters, character):
14
dictionary = monsters
dictionary [character] = cast member
return dictionary
26
27
28
if character not in monsters:
return
return monsters [character]
17
18 #This function returns the size of the dictionary
19 # i.e. number of character present in the dictionary
20 def get_cast_size(monsters):
21
return len(monsters)
22
23 # Definition of the function to change the cast member of a character
24 def change_cast_member (monsters, character, cast member):
25
#This statement changes the cast member
# If the character is not available in the dictionary, then it creates it
monsters [character] = cast member
29
30
31
32
33 monsters create_monster_cast()
34
# return the monsters dictionary
return monsters
35 monsters = add_cast_member(monsters, James P. "Sulley" Sullivan", "John Goodman")
36 monsters = add_cast_member (monsters, Michael "Mike" Wazowski', 'Bill Crystal')
37 monsters = add_cast_member(monsters, 'Boo', 'Mary Gibbs')
38 monsters = add_cast_member(monsters, 'Randall Boggs', 'Steve Buscemi')
'Randall Boggs', 'Steve Buscemi')
39 monsters = add_cast_member(monsters,
40 monsters
add
41 monsters = add_cast_member(monsters,
42
st_member(mo ers, "Henry J. Waternoose III", "James Coburn")
"Mike", "William Crystal")
43
44 print('Monster Cast : ')
45 for key in monsters.keys():
Transcribed Image Text:1 # This function creates a dictionary create_monster_cast(): 2 def 3 4 6 # This function adds the monsters to the dictionary def add_cast_member (monsters, character, cast member): 7 8 d1 = () return di 15 16 9 10 11 12 # This function returns the name of cast member associated with the character 13 def get_cast_member(monsters, character): 14 dictionary = monsters dictionary [character] = cast member return dictionary 26 27 28 if character not in monsters: return return monsters [character] 17 18 #This function returns the size of the dictionary 19 # i.e. number of character present in the dictionary 20 def get_cast_size(monsters): 21 return len(monsters) 22 23 # Definition of the function to change the cast member of a character 24 def change_cast_member (monsters, character, cast member): 25 #This statement changes the cast member # If the character is not available in the dictionary, then it creates it monsters [character] = cast member 29 30 31 32 33 monsters create_monster_cast() 34 # return the monsters dictionary return monsters 35 monsters = add_cast_member(monsters, James P. "Sulley" Sullivan", "John Goodman") 36 monsters = add_cast_member (monsters, Michael "Mike" Wazowski', 'Bill Crystal') 37 monsters = add_cast_member(monsters, 'Boo', 'Mary Gibbs') 38 monsters = add_cast_member(monsters, 'Randall Boggs', 'Steve Buscemi') 'Randall Boggs', 'Steve Buscemi') 39 monsters = add_cast_member(monsters, 40 monsters add 41 monsters = add_cast_member(monsters, 42 st_member(mo ers, "Henry J. Waternoose III", "James Coburn") "Mike", "William Crystal") 43 44 print('Monster Cast : ') 45 for key in monsters.keys():
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Introduction to Template
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT