Answers for "write a function to check whether two given strings are an anagram of each other or not."

2

check if two strings are anagrams python

if sorted(s1) == sorted(s2): 
	print("The strings are anagrams.") 
else: 
	print("The strings aren't anagrams.")
Posted by: Guest on April-07-2020

Code answers related to "write a function to check whether two given strings are an anagram of each other or not."

Python Answers by Framework

Browse Popular Code Answers by Language