I want to make a set from alphabets of a user input for example: input is: "something" and the output must be: { 's', 'o', 'm', 'e', 't', 'h', 'i', 'n', 'g'} I wrote it like below but it caused an error saying the input must be iterable!
str = print("please enter a string:")
str_set = set(str)
print(str_set)