from itertools import permutations

if __name__ == '__main__':
    alphabet='abcdefghijklmnopqrstuvwxyz'
    print list(permutations(alphabet,2))