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']
What is raw_input() and input() in python
What is PYTHONPATH environment variable?
How to split a string in Python
What are the supported data types in Python?
What is Python?
Python a case sensitive language?
var = "Python Programming" What is the output of print var?
What is PYTHONSTARTUP environment variable?
What is PYTHONHOME environment variable?
List the features of Python?
What is the output of print str[3:8] if str = 'Python Programming'?