Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. {'Send': ['direct', 'send_out', 'mail', 'post', 'transport', 'ship', 'station', 'post', 'place', 'get_off', 'send_off', 'commit', 'institutionalize', 'institutionalise', 'charge', 'air', 'broadcast', 'beam', 'transmit'],
  2. 'me': ['me'],
  3. 'bugs': ['glitch', 'hemipterous_insect', 'hemipteran', 'hemipteron', 'microbe', 'germ', 'tease', 'badger', 'pester', 'beleaguer', 'wiretap', 'tap', 'intercept'],
  4. 'from': ['from'],
  5. 'yesterday': ['yesterday']}
  6.  
  7. Direct me glitch from yesterday.
  8. Send_out me glitch from yesterday.
  9. .... Transport me hemipteran from yesterday. etc
  10.  
  11. for f_word in words_dict.keys()[0]:
  12. sent=[]
  13. sent.append(f_word)
  14. for k2,v2 in words_dict.items():
  15. for val in v2:
  16. sent.append(val)
  17. break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement