DeonDub9314 DeonDub9314 28-12-2023 Computers and Technology contestada Consider the following code: stuff = ['dog', 'cat', 'frog', 'zebra', 'bat', 'pig', 'mongoose'] c = 0 for i in range(len(stuff)): c = c + len(stuff[i]) print (c) What is the output? 1) 35 2) 29 3) 7 4) 21