Instagram
youtube
Facebook
Twitter

Check if Two Strings are Anagrams

A Python program to check whether two given strings are anagrams by sorting and comparing their characters.

Code Explanation in Points:

  1. Take Input: Get two strings from the user (first_string & second_string).
     
  2. Convert to Lowercase: Convert both strings to lowercase for case insensitivity.
     
  3. Sort Characters: Use sorted() to arrange the characters in alphabetical order.
     
  4. Compare Sorted Strings: If both sorted lists are equal, they are anagrams.
     
  5. Print Result: Display whether the strings are anagrams or not.
     

Program:

first_string = input("Enter the first string: ")

second_string = input("Enter the second string: ")

first_sorted = sorted(first_string.lower())

second_sorted = sorted(second_string.lower())

if first_sorted == second_sorted:

    print("The given strings are Anagrams.")

else:

    print("The given strings are NOT Anagrams.")