“Sprawdź, czy dwa ciągi to anagramy Python” Kod odpowiedzi

Sprawdź, czy dwa ciągi to anagramy Python

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

Sprawdź, czy dwa ciągi to anagramy 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

Odpowiedzi podobne do “Sprawdź, czy dwa ciągi to anagramy Python”

Pytania podobne do “Sprawdź, czy dwa ciągi to anagramy Python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu