Answers for "write a function to check whether two strings are anagrams or not using python"

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 strings are anagrams or not using python"

Python Answers by Framework

Browse Popular Code Answers by Language