Back to Lesson
Filtering over Zip Space
Enforce selective pairing behaviors bridging two datasets.
Instructions
- Given test gradesand their respective
scores = [95, 42, 88, 70].names = ["Eve", "Dave", "Alice", "Bob"] - Determine and collect ONLY passing students (where).
score >= 70 - You can inject a list comprehension extracting just thewhere its pairing matches the condition.
name - Print the final list of passed candidate names.
main.py
main.py
Ctrl + Enter