{"merry":"god", "christmas":"jul", "and":"och", "happy":"gott", "new":"nytt", "year":"ar"}
and use it to translate your Christmas wishes from English into Swedish.
That is, write a python function translate() that accepts the bilingual dictionary and a list of English words (your Christmas wish) and returns a list of equivalent Swedish words.
and use it to translate your Christmas wishes from English into Swedish.
That is, write a python function translate() that accepts the bilingual dictionary and a list of English words (your Christmas wish) and returns a list of equivalent Swedish words.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#PF-Exer-23 | |
def translate(bilingual_dict,english_words_list): | |
#Write your logic here | |
swedish_words_list=[] | |
for i in english_words_list: | |
for key in bilingual_dict: | |
if(key==i): | |
swedish_words_list.append(bilingual_dict[key]) | |
return swedish_words_list | |
bilingual_dict= {"merry":"god", "christmas":"jul", "and":"och", "happy":"gott", "new":"nytt", "year":"ar"} | |
english_words_list=["merry","christmas"] | |
print("The bilingual dict is:",bilingual_dict) | |
print("The english words are:",english_words_list) | |
swedish_words_list=translate(bilingual_dict, english_words_list) | |
print("The equivalent swedish words are:",swedish_words_list) |