Advertisement
k1alo

dsf

Nov 10th, 2023
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.56 KB | None | 0 0
  1. def is_anagram(word1, word2):
  2.     word1 = word1.lower()
  3.     word2 = word2.lower()
  4.     word1 = list(word1)
  5.     word2 = list(word2)
  6.     word1.sort()
  7.     word2.sort()
  8.     print(word1, word2)
  9.     return word1 == word2
  10.  
  11.  
  12. word1 = input("Введите первое слово: ")
  13. word2 = input("Введите второе слово: ")
  14. if is_anagram(word1, word2):
  15.     print(f"Слово '{word1}' является анаграммой слова '{word2}'.")
  16. else:
  17.     print(f"Слово '{word1}' не является анаграммой слова '{word2}'.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement