🏠 Strona Główna
Benchmarki
📊 Wszystkie benchmarki 🦖 Dinozaur v1 🦖 Dinozaur v2 ✅ Aplikacje To-Do List 🎨 Kreatywne wolne strony 🎯 FSACB - Ostateczny pokaz 🌍 Benchmark tłumaczeń
Modele
🏆 Top 10 modeli 🆓 Darmowe modele 📋 Wszystkie modele ⚙️ Kilo Code
Zasoby
💬 Biblioteka promptów 📖 Słownik AI 🔗 Przydatne linki
medium

Refactor Code for Readability

Improve the structure and naming conventions of a given Python function.

Refactor the following Python function to improve readability and adhere to PEP 8 standards. Rename variables to be descriptive, add docstrings, and simplify complex logic where possible: def calc(a, b, c): if c > 0: return a * b else: return a + b