Answers for "python check if two words are anagrams"

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 "python check if two words are anagrams"

Python Answers by Framework

Browse Popular Code Answers by Language