Palindrome Checker

Welcome to the Palindrome Checker page.

This page contains a brief description and implementation instructions for the project.

Project Description

Checks whether a word or phrase reads the same forwards and backwards (ignoring spaces/punctuation). The user enters a string, and the program reports if it’s a palindrome.

Project Requirements

Python 3.x (no libraries needed).

How to Run the Project

  1. Create a script (e.g. palindrome.py) that prompts for a text string.
  2. Run it: python palindrome.py. Enter text; the program outputs “Palindrome” or “Not a palindrome”.

Key Concepts Learned

Possible Extensions

Troubleshooting & Debugging

See Troubleshooting & Debugging.

← Back to Python Programming Page