🏠 Home
Prestatietests
📊 Alle benchmarks 🦖 Dinosaur v1 🦖 Dinosaur v2 ✅ To-Do List applicaties 🎨 Creatieve vrije pagina's 🎯 FSACB - Ultieme showcase 🌍 Vertaalbenchmark
Modellen
🏆 Top 10 modellen 🆓 Gratis modellen 📋 Alle modellen ⚙️ Kilo Code
Bronnen
💬 Promptbibliotheek 📖 AI-woordenlijst 🔗 Nuttige links
advanced

Debug Python Code Logic

#python #coding #debugging

Identify and fix a logical error in a code snippet.

Analyze the following Python code snippet designed to calculate the factorial of a number. Identify why it returns zero for the input 5 and provide the corrected code: def factorial(n): result = 0; for i in range(1, n+1): result *= i; return result