Skip to main content
🔮 Output PredictionPY Python Medium⚡+20 XP

Zip Function

What does this produce?

Python
names = ["Alice", "Bob"]
ages = [25, 30]
print(list(zip(names, ages)))

🔮 What is the output?