1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Ratling [72]
3 years ago
10

Software, such as a word processor, search engine, or mobile interface, typically includes plug-in support specific to a languag

e to aid with spelling. In this assignment, you will implement a class that provides general language support; such a class could presumably be (re)used in these broader software applications. For the purpose of spell checking, a simple language model is a set of valid words. By convention, a language specification may include both capitalized and uncapitalized words. A word that is is entirely lowercased in the language specification can be used in either capitalized or uncapitalized from (e.g., if 'dog'is in the language specification, then both 'dog' and 'Dog' are legitimate usages). However, any word that includes one or more uppercased letters in the original language reflects a form that cannot be modified (e.g., 'Missouri' is acceptable but 'missouri' is not; 'NATO' is acceptable, but neither 'Nato', 'nato', nor 'nAto' would be acceptable). The goals of the new class will be to answer the following types of queries: • Is a given string a legitimate word in the language? (based on the above conventions regarding capitalization) • Given a string, which may or may not be in the language, produce a list of suggestions that are valid words in the language and reasonably "close" to the given string in terms of spelling. (We will say more below, about the notion of distance between words.) Formally, you are to provide a file named language_tools.py that defines aLanguageHelper class with the following three methods. _init__(self, words) The words parameter can be any iterable sequence of strings that define the words in the language. For example, the parameter may be a list of strings, or a file object that has one word per line. All you should assume about this parameter is that you are able to do a loop, for w in words: to access its entries. The class is responsible for recording all words from the language into an internal data representation, and stripping any extraneous whitespace from each entry (such as newline characters that will appear in a file). For the sake of efficiency, we recommend that you store the language words in a Python set instance. (We discuss sets in a later section.) _contains_(self, query) The query parameter is a string. This method should determine whether the string is considered a legitimate word, returning True if the word is contained in the language and False otherwise. This method should adhere to the aforementioned conventions regarding capitalized and uncapitalized words. For example, dog, Dog and Missouri are contained in the English language, yet missouri and Missourri are not. The _contains_ special method is used by Python to support the in operator. It allows the standard syntax "Missouri' in language which is implicitly translated by Python to the internal call language. _contains_('Missouri') presuming that language is an instance of our LanguageHelper class. getSuggestions (self, query) Given a query string, this method should return an alphabetical list of "nearby" words in the language. Doing a good job at offering suggestions is the most difficult part of writing a good language helper. We discuss this aspect of the project in a later section. S = set() create a new set instance (which is initially an empty set). s.add(value) adds the given value to the set (value will be a string in our application). value in s returns True if the given value is currently in the set, and False otherwise.
Engineering
1 answer:
bearhunter [10]3 years ago
7 0

Answer:

Check the explanation

Explanation:

class LanguageHelper:

language=set()

#Constructor

def __init__(self, words):

for w in words:

self.language.add(w)

def __contains__(self,query):

return query in self.language

def getSuggestionns(self,query):

matches = []

for string in self.language:

if string.lower().startswith(query) or query.lower().startswith(string) or query.lower() in string.lower():

matches.append(string)

return matches

lh = LanguageHelper(["how","Hi","What","Hisa"])

print('how' in lh)

print(lh.getSuggestionns('hi'))

===========================================

OUTPUT:-

==================

True

['Hisa', 'Hi']

====

You might be interested in
Why would an aerospace engineer limit the maximum angle of deflection of the control surfaces?
nordsb [41]
It has the same limit of each angle
4 0
3 years ago
Consider a C.T. system in s-plane below. Draw DF1 (Direct Form 1) realization. (by hand) Perform system realization using MATLAB
spin [16.1K]

Answer:

See the attached file for the answer.

Explanation:

See the attached file for the explanation

5 0
3 years ago
You should be extra careful during the hours of sunrise, sunset, and nighttime because _____. A. of increased law enforcement ac
torisob [31]

Answer:

B, its the only valid answer

5 0
4 years ago
What is a type of technology that can be attached to a tag and used to identify postal packages ​
nydimaria [60]
Here’s the answer
Ur welcome

5 0
3 years ago
How did the gene combination result in the different traits?
Sindrei [870]

Answer:

The half-sets of genes contributed by sperm and egg restore a whole set of genes in the offspring. Mendel found that different gene combinations from the parents resulted in specific ratios of dominant-to-recessive traits

Explanation:

Genes carry the information that determines your traits, which are features or characteristics that are passed on to you — or inherited — from your parents.

Hope This Helps

5 0
3 years ago
Other questions:
  • 2. When manipulating your pedals, you should use your
    7·2 answers
  • According to the zeroth law of thermodynamics, which of the following cannot occur?
    7·1 answer
  • A rigid, sealed cylinder initially contains 100 lbm of water at 70 °F and atmospheric pressure. Determine: a) the volume of the
    14·1 answer
  • In order to impress your neighbors and improve your vision in traffic jams, you decide to mount a cylindrical periscope 2.0 m hi
    15·1 answer
  • What is a two stroke engine and what is a four stroke engine, please keep the definitions as simple as can be and please explain
    8·2 answers
  • 1. The system must be able to manage multiple students (max of 15) and their grades for assignments from three different assignm
    6·1 answer
  • What is JIT and why would you advocate it to reduce inventory?
    8·1 answer
  • Are we living in a simulation! <br> True <br> False
    12·2 answers
  • **Please Help ASAP**
    6·1 answer
  • What are the causes and solutions of social problems ?what are the causes and solutions of social problems ​
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!