Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. from itertools import product
  2.  
  3. chars = '123456789' # chars to look for
  4.  
  5. for length in range(16, 17 ):
  6.     to_attempt = product(chars, repeat=length)
  7.     for attempt in to_attempt:
  8.         print(''.join(attempt))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement