Python provides a function named split() which can be used to achieve this. It also provides a way to control the delimiter and number of characters to be considered as delimiter Example This will return below output
str = "Python Java PHP Flutter";
print(str.split())
print(str.split(' ', 2))
['Python', 'Java', 'PHP', 'Flutter']
['Python', 'Java', ' PHP Flutter']
List the features of Python?
Python a case sensitive language?
var = "Python Programming" What is the output of print var?
What is raw_input() and input() in python
What is PYTHONPATH environment variable?
What is PYTHONHOME environment variable?
What are the supported data types in Python?
What is Python?
What is the output of print str[3:8] if str = 'Python Programming'?
What is PYTHONSTARTUP environment variable?
How to split a string in Python