Skip to content

Instantly share code, notes, and snippets.

@PieroPaialungaAI
Created November 29, 2025 23:22
Show Gist options
  • Select an option

  • Save PieroPaialungaAI/3423247f8cfd69f917becec4832276cf to your computer and use it in GitHub Desktop.

Select an option

Save PieroPaialungaAI/3423247f8cfd69f917becec4832276cf to your computer and use it in GitHub Desktop.
import json
# Load the test file
with open('data/test.json', 'r') as f:
test_data = json.load(f)
# Display a few example questions
print("📝 EXAMPLE QUESTIONS FROM THE EXAM\n")
print("="*70)
for section in test_data['sections'][:2]: # Show first 2 sections
print(f"\n🔹 Section {section['section']}: {section['title']}")
print(f" Dataset: {section['dataset']}")
print()
# Show first question from each section
question = section['questions'][0]
print(f" Question {question['question_number']} ({question['points']} points):")
print(f" {question['question']}")
print()
print("="*70)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment