Quick Quiz!
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
Which of the following dictionaries has a length of three?
A.
some_dict = {
5: "five",
5.0: "five point zero",
5 + 0j: "complex five"
}
B.
some_dict = {
1: "one",
True: "True",
"1": "another one"
}
C.
some_dict = {
0: "zero",
"": "empty",
"0": "another zero"
}
1 / 4