EasyOutput prediction

zip() with three iterables

What does this code print?

keys = ["a", "b", "c"]
vals = [1, 2, 3]
flags = [True, False, True]
result = list(zip(keys, vals, flags))
print(result)

← → arrow keys to navigate

Sign in to save your progress.