subject

In this program, you will build an English to Hmong translator program. Hmong is a language widely spoken by most Southeast Asian living in the Twin Cities. The program lets the user type in a sentence in English and then translate it to a Hmong sentence. The program does not care about grammar or punctuation marks. That means your program should remove punctuation marks from the English words before attempt to translate them. Make sure it is case insensitive. You are given a file containing tuples of entry number, English word, and Hmong word.
If the dictionary does not contain the English word, simply put a question mark (?) as the translation.
Your program should consists of the following functions:
In this python program, you will build an English to Hmong translator program. Hmong is a language widely spoken by most Southeast Asian living in the twin cities.
The program lets the user type in a sentence in English and then translate it to a Hmong sentence. The program does not care about grammar or punctuation marks. That means your program should remove punctuation marks from the English words before attempt to translate them. Make sure it is case insensitive. You are given a file containing tuples of entry number, English word, and Hmong word.
If the dictionary does not contain the English word, simply put a question mark (?) as the translation.
Your program should consists of the following functions:
load_dictionary(filename)
Read the file containing the tuples, insert the entries into the dictionary and return the dictionary object.
translate(sentence)
Take a sentence in English and return a sentence in English.
print_word_frequency()
Print the frequency of English words that were translated.
main
The main logic loop.
The main loop:
The program prompts the user for an English sentence. It translate each word in Hmong and print the Hmong words in a sentence. If an English word does not exist in the dictionary, it uses ? as the Hmong translation of that word. Each time the program finishes translating, it asks the user if they want to continue. If not, it displays the English words and the number of time the words have been entered into the program. See sample run below.
Sample run:
Type your English sentence: I can help you help him.
Hmong: kuv tau pab koj pab nws
Another translation (Y/N): Y
Type your English sentence: You can help me.
Hmong: koj tau pab kuv.
Another translation (Y/N): N
Word Frequency

i 1
can 2
you 2
help 2
him 1
The main loop:
The program prompts the user for an English sentence. It translate each word in Hmong and print the Hmong words in a sentence. If an English word does not exist in the dictionary, it uses a ? as the Hmong translation of that word. Each time the program finishes translating, it asks the user if they want to continue. If not, it displays the English words and the number of time the words have been entered into the program. See sample run below.
Sample run:
Type your English sentence: I can help you help him.
Hmong: kuv tau pab koj pab nws
Another translation (Y/N): Y
Type your English sentence: You can help me.
Hmong: koj tau pab kuv.
Another translation (Y/N): N
Word Frequency

I 1
can 2
you 1
help 2
him 1
me 1

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 02:00
Consider the following function main: int main() { int alpha[20]; int beta[20]; int matrix[10][4]; . . } a. write the definition of the function inputarray that prompts the user to input 20 numbers and stores the numbers into alpha. b. write the definition of the function doublearray that initializes the elements of beta to two times the corresponding elements in alpha. make sure that you prevent the function from modifying the elements of alpha. c. write the definition of the function copyalphabeta that stores alpha into the first five rows of matrix and beta into the last five rows of matrix. make sure that you prevent the function from modifying the elements of alpha and beta. d. write the definition of the function printarray that prints any onedimensional array of type int. print 15 elements per line. e. write a c11 program that tests the function main and the functions discussed in parts a through d. (add additional functions, such as printing a two-dimensional array, as needed.)
Answers: 3
question
Computers and Technology, 23.06.2019 02:30
Experimental data that is expressed using numbers is said to be
Answers: 1
question
Computers and Technology, 23.06.2019 13:00
Donnie does not have powerpoint. which method would be best for elana to save and share her presentation as is? a pdf a doc an rtf a ppt
Answers: 3
question
Computers and Technology, 23.06.2019 16:30
How to do this programming flowchart?
Answers: 3
You know the right answer?
In this program, you will build an English to Hmong translator program. Hmong is a language widely s...
Questions
question
Mathematics, 10.11.2020 16:00
question
Computers and Technology, 10.11.2020 16:00
question
Mathematics, 10.11.2020 16:00
question
Mathematics, 10.11.2020 16:00
question
Mathematics, 10.11.2020 16:00