12345
Back to Lesson

Filtering over Zip Space

Enforce selective pairing behaviors bridging two datasets.

Instructions

  • Given test grades
    scores = [95, 42, 88, 70]
    and their respective
    names = ["Eve", "Dave", "Alice", "Bob"]
    .
  • Determine and collect ONLY passing students (where
    score >= 70
    ).
  • You can inject a list comprehension extracting just the
    name
    where its pairing matches the condition.
  • Print the final list of passed candidate names.
main.py
main.py