🐍 Python Conditions Matching Game

📋 Instructions:

Given:

numbers = [5, 12, 8, 23, 15, 42, 7, 18, 31, 50, 3, 28, 9, 36, 11]
# Condition A: even numbers
# Condition B: greater than 10

Your Task: Test different conditions in the code editor, then drag each condition to match its correct output below!

💻 Test Code Editor

test_conditions.py
Output will appear here...

🎯 Conditions

Condition 1: Only A (even numbers)
Condition 2: Only B (greater than 10)
Condition 3: A AND B (even AND greater than 10)
Condition 4: A OR B (even OR greater than 10)
Condition 5: NOT A (odd numbers)
Condition 6: NOT B (10 or less)
Condition 7: A AND NOT B (even AND 10 or less)
Condition 8: NOT A AND B (odd AND greater than 10)

📊 Outputs

Output A:
[12, 42, 18, 50, 28, 36]
Output B:
[23, 15, 31, 11]
Output C:
[12, 8, 23, 15, 42, 18, 31, 50, 28, 36, 11]
Output D:
[5, 23, 15, 7, 31, 3, 9, 11]
Output E:
[12, 8, 42, 18, 50, 28, 36]
Output F:
[12, 23, 15, 42, 18, 31, 50, 28, 36, 11]
Output G:
[5, 8, 7, 3, 9]
Output H:
[8]