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