“Verifique se duas cordas são anagramas python” Respostas de código

Verifique se duas cordas são anagramas python

if sorted(s1) == sorted(s2): 
	print("The strings are anagrams.") 
else: 
	print("The strings aren't anagrams.")  
Cmndr_Salamander

Verifique se duas cordas são anagramas python

s1=rare
s2=care
if sorted(s1) == sorted(s2): 
	print("The strings are anagrams.") 
else: 
	print("The strings aren't anagrams.")  
M.Geethika 20-417

Respostas semelhantes a “Verifique se duas cordas são anagramas python”

Perguntas semelhantes a “Verifique se duas cordas são anagramas python”

Procure respostas de código populares por idioma

Procurar outros idiomas de código