write a python function to test, if a given word (passed as an argument) is an perfect isogram. code example
Example: is_isogram
def is_isogram(string):
for i in string:
if string.count(i) > 1:
return False
return True
def is_isogram(string):
for i in string:
if string.count(i) > 1:
return False
return True