Skip to content

Instantly share code, notes, and snippets.

@talfco
Last active March 16, 2019 23:03
Show Gist options
  • Save talfco/93a59cc36bb6a738e05d9f0c6cac471e to your computer and use it in GitHub Desktop.
Save talfco/93a59cc36bb6a738e05d9f0c6cac471e to your computer and use it in GitHub Desktop.
@classmethod
def generate_combinations(cls,name_tuple):
coms = []
coms.append(name_tuple)
i = len(list(name_tuple))-1
while i > 0:
coms.extend(itertools.combinations(name_tuple,i))
i -=1
return coms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment