🏠 Accueil
Benchmarks
📊 Tous les Benchmarks 🦖 Dinosaure v1 🦖 Dinosaure v2 ✅ To-Do List Apps 🎨 Pages Libres 🎯 FSACB - Showcase 🌍 Traduction
Modèles
🏆 Top 10 Modèles 🆓 Modèles Gratuits 📋 Tous les Modèles ⚙️ Modes Kilo Code
Ressources
💬 Prompts IA 📖 Glossaire IA 🔗 Liens Utiles
hard

Debug a Python Function

#python #debugging #coding

Identify the logical error in a specific code snippet and suggest a fix.

Analyze the following Python code snippet designed to reverse a string. Identify why it returns an error when the input is an empty string. Provide the corrected code block and a brief explanation of the fix. Code: def reverse_string(s): return s[len(s)-1::-1]