← Project

Digging into AI

An Archaeological Python Adventure

📜 Dr. Rodriguez: "These fragment lengths hide a pattern..."
🎯 Analyze the distribution to reveal the hidden message

📚 Reference & Data

📊 Fragment Data

[45, 23, 67, 12, 89, 34, 56, 78, 21, 43]

Categories: <30, 30-60, >60 chars

🔍 Python References
  • str(number) — convert to text
  • len(list) — count items
  • sum(list) — total value
  • [x for x in list if ...] — filter

🔎 Your Findings

Your Code