dic = { '2' : 2, '3' : 3, '4' : 4, '5' : 5, '6' : 6, '7' : 7, '8' : 8, '9' : 9, '10' : 10, 'J' : 11, 'Q' : 12, 'K' : 13, 'A' : 1 } def others(lst, idx): res = [] for i in range(len(lst)): if i != idx: res.append(lst[i]) return res def groups(lst): res = ...