“Найдите анаграммы струнного питона” Ответ

Проверьте, являются ли две струны Anagrams Python

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

Anagrams String Python

# anagram in string
a1=input('Enter the first string :')
a2=input('Enter the second string :')
b1=sorted(a1)
b2=sorted(a2)
print(b1,b2)
if b1==b2:
 print('They are anagrams')
else:
 print('They are not anagrams')
#output:
--------------------------------------------------------------------------------
case I
Enter the first string :789
Enter the second string :987
['7', '8', '9'] ['7', '8', '9']
They are anagrams
--------------------------------------------------------------------------------
case II
nter the first string :1598
Enter the second string :6951
['1', '5', '8', '9'] ['1', '5', '6', '9']
They are not anagrams
--------------------------------------------------------------------------------
Gr@Y_orphan_ViLL@in##

Найдите анаграммы струнного питона

def are_anagrams(first, second):
    return len(first) == len(second) and sorted(first) == sorted(second)
CompSciGeek

Anagrams String Python


def isAnagram(str1, str2):
    str1_list = list(str1)
    str1_list.sort()
    str2_list = list(str2)
    str2_list.sort()

    return (str1_list == str2_list)

Nice Nightingale

Ответы похожие на “Найдите анаграммы струнного питона”

Вопросы похожие на “Найдите анаграммы струнного питона”

Больше похожих ответов на “Найдите анаграммы струнного питона” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования