What does means by split do in python?
Answer / Satyam Krishna Gupta
The split() method in Python is used to divide a string into a list where each word is a list item. It breaks the string at spaces and other specified separators. For example: 'Hello World'.split() returns ['Hello', 'World'].
| Is This Answer Correct ? | 0 Yes | 0 No |
Should I learn r or python first?
What is data hiding in python?
What is a script file in python?
Is python shell scripting?
What is anonymous function or lambda function?
How many keywords are there in python?
Understanding python super() with __init__() methods?
How to create an empty dataframe?
What are the benefits of python?
How you can convert a number to a string?
How to comment multiple lines in python?
Can a class extend itself?