98.4k views
0 votes
Choose the type of collection created with each assignment statement

____ collection A = {5:2}
Options: tuple, dictionary, list

____ collection B = (5,2)
Options: tuple, dictionary, list

____ collection C = [5,2]
Options: tuple, dictionary, list

Choose the type of collection created with each assignment statement ____ collection-example-1

1 Answer

9 votes

Answer:

dictionary

tuple

list

Step-by-step explanation:

User Walchy
by
5.2k points