208. Check if Two Strings are Anagram with Code || Python lower(), sorted()

Опубликовано: 04 Октябрь 2024
на канале: Bhavatavi
5
1

Lower method Link:    • 131. String Lower and Rjust Method in...  
Sorted function Link:    • 190. Slice and Sorted Function in Pyt...  

Code:
str1='Heart'
str2='Earth'

str1=str1.lower()
str2=str2.lower()
if(len(str1)==len(str2)):
sorted_str1=sorted(str1)
sorted_str2=sorted(str2)

if(sorted_str1==sorted_str2):
print(str1+ ' and ' +str2+ ' are anagram.')
else:
print(str1+ ' and ' +str2+ ' are not anagram.')
else:
print(str1+' and '+ str2 + ' are not anagram.')