Purpose: find which word is an anagram of another word
Input: list of words
from anagrams import anagrammer
words=['python', 'tyhphon', 'typhon']
anagrammer(words)[('NOT an ANAGRAM', 'python', 'tyhphon'),
('ANAGRAM found', 'python', 'typhon'),
('NOT an ANAGRAM', 'tyhphon', 'typhon')]
Purpose: find if a word is palyndrome
Input: Word as a string
from palindromes import palyndromer
pword='satorarepotenetoperarotas'
palyndromer(pword)'Char IS palindrome'