Write a function that checks whetherb two words are anagrams. Two words are anagrams if they contain the same latters. (Example: silent and listen). The header of the function is : def isAnagram(s1, s2):
(Hint: Obtain two lists for the 2 strings. Sort the lists and check if two lists are identical)
Write a test program that promts the user to enter two stringd and if theyre anagrams, display 'are anagram' otherwise, 'are not anagram'.