Question

Consider the following Python code: list_a = [1, 2, 3] tuple_b = (4, 5) string_c = "hello" dict_d = {"key1": 1, "key2": 2} print(len(list_a) + len(tuple_b) + len(string_c) + len(dict_d)) What will be the output of this code?

A 10
B 11
C 12
D 13
E 14
Practice Next

Hey! Ask a query