Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- your_list = 'abcdefghijklmnopqrstuvwxyz'
- complete_list = []
- for current in xrange(10):
- a = [i for i in your_list]
- for y in xrange(current):
- a = [x+i for i in your_list for x in a]
- complete_list = complete_list+a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement