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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!