Practice · Feedback · Progress
Python clicks when you build it.
Five focused exercises, immediate feedback, and a learning path that adapts to what you know—not how fast you click “next.”
Today’s focus
Palindrome Lab
def is_palindrome(text):
clean = text.lower()
return clean == clean[::-1]
print(is_palindrome(input())) All tests passed. Nicely done.