It is a program where we play with Anagram String.
To check whether two strings entered by user are anagram strings or not.
- An anagram of a string is a another string that contains same chatacters but only the order of characters can be different.
- For Example, "race" and "care" are angram of each other.
- User enter two random strings and program will tell that the entered two stirngs are anagram string or not.
- Firstly, the program demands a two strings from the user.
- checking length of both strings are same or not. if not same print strings are not anagram string otherwise continue.
- converted strings into lower case and sorted the strings.
- checking both sorting stirgs is same or not. a) If it is same then print both strigns are anagram string. b) otherwise print both strings are not anagram string.
- Download the python in your local system.
- Run this program in a proper IDE e.g. Visual Studio Code, Pycharm, Jupyter Notebook etc. or any online Compiler like Repelit.
- Enter two strings if you want to check strings are anagram string or not.
- You can show both strings are anagram string or not.