What does this code print?
a = [1, 2] b = [1, 2] a.append([3, 4]) b.extend([3, 4]) print(len(a), len(b))
← → arrow keys to navigate
Sign in to save your progress.