How to determine if two strings are permutations of each other
>>>def isPermutation = lambda x, y: set([i for i in x]) == set([j for j in x]) >>>isPermutation("rasp", "spar") >>>True