ANAGRAMS GAME WITH PYTHON


THE PROGRAMES OF ANAGRAMES

The program of anagrames is very fames game which is play in chiled hood of every person


They are very interesting so lates play this game by using programming of using python

the code of the prigrame is very simple


str1=input("Enter the first string ") str2=input("Enter the secind string ") if(sorted(str1)==sorted(str2)): print("these are the anagrams") else: print("these are not anagrams")


Comments