Answer:
Check the explanation
Explanation:
#method to find the word in one language and return
#corresponding word in other language
def translate(ltolDict):
#loop to display contents of the dictionary
print("Welcome to the WordsRUs translation service.")
word = input("Please enter a word: ")
while word != "Quit" and word != "quit":
if word in ltolDict:
print(word ," means ", ltolDict[word])
else:
print(word ," means ", "________")
word = input("Please enter a word: ")
print("Thanks for using our translation service.")
A code screenshot can be seen below.