is_isogram

def is_isogram(string):
   for i in string:
       if string.count(i) > 1:
           return False
   return True
evan