Q. What will the output of following python code?
Code:
list1 = [1, 2, 3, 4] list2 = [5, 6, 7, 8] print(len(list1 + list2))
β
Correct Answer: (C)
8
list1 = [1, 2, 3, 4] list2 = [5, 6, 7, 8] print(len(list1 + list2))
You must be Logged in to update hint/solution