Advertisement
Guest User

Untitled

a guest
Nov 24th, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. f=open(filename_dictionary,'r')
  2. dictionary=f.readlines()
  3. f.close()
  4. new_dict=[]
  5. for item in dictionary:
  6.     new_dict.append(item.split(' '))
  7. list(itertools.product(*new_dict))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement