In this Python string tutorial, you will learn how to convert a string to a list of words in Python.
# Create a string S = "AiHints is a website" # Convert string into list of words L = S.split() # Print list of words print(L) # Display the type of L print(type(L))
Output:
['AiHints', 'is', 'a', 'website'] <class 'list'>