Answers for "function to check if two strings are almost anagrams in 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 "function to check if two strings are almost anagrams in python"

Python Answers by Framework

Browse Popular Code Answers by Language