KALIIOWORK / basic_python_programs

Explore easy-to-understand Python programs for beginners! Contribute, learn, and grow your coding skills. Start your Python journey here! 🚀🐍
0 stars 8 forks source link

Debugging Challenge: Fix the Python Palindrome Checker #2

Closed KALIIOWORK closed 10 months ago

KALIIOWORK commented 10 months ago

Hello budding coders! Here's a chance to practice your debugging skills. We have a Python program meant to check if a given word is a palindrome, but it's not working correctly. Your mission, should you choose to accept it, is to debug and fix the code!

Task: The current program is intended to check if a word entered by the user is a palindrome (reads the same backward as forward). However, there are bugs in the code preventing it from functioning correctly. Your job is to identify and fix these issues.

Guidelines:

How to Contribute:

  1. Fork this repository.
  2. Create a new branch: git checkout -b palindrome-debug-challenge
  3. Locate the bugs in the existing palindrome_checker.py file and fix them.
  4. Test your fixed code thoroughly to confirm it's working correctly.
  5. Commit your changes: git commit -m "Fix palindrome checker"
  6. Push to your branch: git push origin palindrome-debug-challenge
  7. Open a pull request to this repository.

Feel free to reach out if you need hints or assistance. Debugging is a crucial skill, and this challenge is a fantastic opportunity to hone it. Good luck, and happy coding! 🐍🔍✨