How to create a set of words from a string? code example
Example: How to create a set of words from a string?
string=("one one two three three four hello hello")
set_of_words = set(string.split(' ')
string=("one one two three three four hello hello")
set_of_words = set(string.split(' ')