Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. word_dict = {'show': ['display', 'exhibit', 'convey', 'communicate', 'manifest', 'disclose']}
  2.  
  3.  
  4. def main():
  5. get_list = remove_word(word_dict)
  6. print(get_list)
  7.  
  8. def remove_word(word_dict):
  9.  
  10. synonyms = word_dict.values()
  11. new_list = []
  12. for i in synonyms:
  13. new_list.append(i)
  14.  
  15. return new_list
  16.  
  17. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement