#! /usr/local/bin/python3 from itertools import combinations x = combinations('abcdef', 3) print(x) print(type(x))