Question: Write a program which initializes an empty list and then prompts the user for a single word and keeps prompting for single words, adding each word to the list, until the user enters a single period character '.' Then print all pairs of words which are anagrams. Comparisons should be case insensitive. - Can use dictionary to simply, but not required. Can define functions as seen fit.
I have tried several versions of the code below and I just can't seem to figure out what I'm doing wrong. Can someone help by pointing me in the right direction/giving me an example code that is similar? I'm just so stuck.
def areAnagrams(inputList):
"""Return inputList if words are anagrams, False otherwise"""
inputList = sorted(inputList.lower())
return inputList
inputList = raw_input ("Enter a word period to end: ")
list = []
while inputList != '.':
anagram = inputList
list.append(anagram)
inputList = raw_input("Enter a word (period to end): ")
print "Anagrams:", areAnagrams(inputList)

areAnagramsmethod does is return the input list sorted. Are you expecting somebody to do your homework for you? – Jim Garrison Mar 17 '12 at 1:28areAnagramsto be able to tell you if a pair of words are anagrams, you're going to have to give it two separate words when you call it. – Karl Knechtel Mar 17 '12 at 2:08