Create a new string from not repeated letters from the 'something else' string Result: omithingl
Sigiloso
def find_string(s): result = "" for i in s: if s.count(i) == 1 and i != " ": result = result + i return result print(find_string("something else"))