Which statement correctly describes len(list(zip([1, 2, 3], ["a"]))) under the default zip behavior?
Explanation
Zip can form only one pair before the shorter input is exhausted, so the resulting list has one item. Default zip neither pads with None nor rejects inputs merely because their lengths differ.