[ create a new paste ] login | about

Link: http://codepad.org/IpGN88Sr    [ raw code | output | fork ]

Python, pasted on Jan 31:
1
2
3
4
5
6
7
letter_combinations = []

    for i in range(1, len(current_hand) + 1):
        for c in (itertools.combinations(current_hand, i)):
            letter_combinations.append(c)

     return letter_combinations       


Output:
1
2
3
4
  Line 3
    for i in range(1, len(current_hand) + 1):
    ^
IndentationError: unexpected indent


Create a new paste based on this one


Comments: