Question: Expected Behavior Write a Python class Word that meets the following requirement:s Attributes . word: the string that makes up the word; Methods: * init_(self,

Expected Behavior Write a Python class Word that meets the following requirement:s Attributes . word: the string that makes up the word; Methods: * init_(self, word): initializes the_word attribute of the object with the string word supplied as the method's argument. .str (self): returns the value of the object's_word attribute with all upper-case letters converted to lower-case. A method that takes a 0rd object other as argument and returns True if other is an anagram of the word, False otherwise Given two Word objects w1 and w2, it should be possible to determine whether they are anagrams of each other (ignoring upper/lower case differences) using the expression Note: A word can need not contain just letters. For example, "Hi there )" is a legal word. Examples 1. wordl-Word ("post") word2 - Word ("stop") wordi rdl - word2 Result: True word2 - Word("") wordl word2 Result: True 3. word1-Word ("aBlE") str (wordi) Result: able 4, word1 word2- wordi word ("able") Word ( "baker") word2 Result: False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
