Some code I made for a friend's challenge! Originally on Python, I have turned it into Scratch for fun, featuring Bat, one of the most adorable Scratch sprites :D This code is really questionable, but here it is lol: #palindrome checker code by Hailey #trying to create a palindrome checker on Python #Wish me luck!! palin = input("What is your palindrome?") answer = "blank" for i in range (len(palin)): first_letter = palin[i] last_letter = palin[int(len(palin))-i-1] if first_letter != last_letter: answer = "no" print("not a palindrome!") break if answer != "no": print("it is a palindrome!")