two words are anagrams if they contain the same letters. for example, silent and listen are anagrams. the header of the function is: def isanagram(s1, s2): write a main function that prompts the user to enter two strings and, if they are anagrams, displays is an anagram; otherwise, it displays is not an anagram. do not use method sort or lists.