firsts = ["Tyler", "Chandra"]
lasts = ["Hillery", "Hillery", "Hill"]
try:
for z in zip(firsts, lasts, strict=True):
print(z)
except Exception as e:
print(e)
('Tyler', 'Hillery')
('Chandra', 'Hillery')
zip() argument 2 is longer than argument 1