codedex-io/python-101

Python 101 Repo

Opened this issue · 0 comments

•	Bug 1: Code Syntax Errors - Files like quadratic.py have missing colons and inconsistent indentation. This causes syntax errors and prevents the code from running properly .
•	Bug 2: Logic Errors - In rocket.py, there’s an infinite loop caused by a missing increment operation within the loop body .
•	Bug 3: Typographical Mistakes - The file calculator.py contains variable names that are inconsistent, leading to NameErrors when executed .
•	Bug 4: Improper Handling of Edge Cases - The bmi.py script does not handle zero or negative inputs, causing it to produce incorrect results ..