Quick 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"
}
Question 1 of 40 attempted

Get hands-on with 1200+ tech skills courses.