Exercise for List | Python Tasks

Опубликовано: 18 Июнь 2026
на канале: Python Programmer
437
2

Two words are anagrams if you can rearrange the letters from one to spell the other.
Write a function called is_anagram that takes two strings and returns True if they are anagrams.
Ex:
--- is_anagram ‘return’,’turner’
True
--- is_anagram ‘free’,’refer’
False