Answers for "string set python"

1

python string in set

a_string = 'Hello World Hello'

# In case we want to get a 'set' of chars
print(set(a_string))
# Output -> {'W', 'r', 'l', 'H', 'd', ' ', 'o', 'e'}

# In case we want to get a 'set' of words
print(set(a_string.split()))
# Output -> {'Hello', 'World'}
Posted by: Guest on June-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language