string spliting using python
Answers
Answered by
2
Answer:
Python String split() Method
Python String split() MethodThe split() method splits a string into a list. You can specify the separator, default separator is any whitespace. Note: When maxsplit is specified, the list will contain the specified number of elements plus one.
Similar questions