Question: **Python3.6** Write a function called is_anagram() that takes two strings and returns True if the strings are anagrams of each other. The function should not
**Python3.6**
Write a function called is_anagram() that takes two strings and returns True if the strings are anagrams of each other. The function should not be case-sensitive. So is_anagram("Listen","Silent") should return True, and is_anagram("foobar","baffor") should return False.
How can I using the string method .count to solve this problem?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
