Question: Write a function called check_anagram(a, b) that takes two strings as input and returns True if they are anagrams and False otherwise Two words are

 Write a function called check_anagram(a, b) that takes two strings as

Write a function called check_anagram(a, b) that takes two strings as input and returns True if they are anagrams and False otherwise Two words are anagrams of one another if you can form one word by using exactly the letters in the other word. For example, "struts" and "trusts" are anagrams, but "bored" and "robbed" are not. A student who completes this exercise should be able to: Treat a String as a sequence of characters For example: Test Result print (check anagramC"struts", "trusts")) True print (check anagram("bored", "robbed" False

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!