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

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
Get step-by-step solutions from verified subject matter experts
