News

Description Write a Python program to check anagram string Two strings are said to be anagrams if they make a meaningful word by rearranging or shuffling the letters of the string. In other words, ...
Two words are anagrams of eachother if the letters of one can be rearranged to fit the other. e.g. anagram and nag a ram. Write another function check_anagram that takes two strings as parameters and ...