141with open("words.txt") as f:
2words = f.read().split("\n")
3
4print("Word: Backwards: Palindrome")
5for word in words:
6backwards = word[::-1]
7palindrome = backwards == word
8print(word.ljust(9), backwards.ljust(14), palindrome)
9
10
11# Challenges:
12# 1) Add your own list of words to words.txt
13# 2) Make it work with words even if they contain capital letters
14# 3) Change the table so that it says Yes or No instead of True / False for the palindrome column