The split() function in Python programming language breaks the string on the basis of:
A) Blank Space
B)Comma
C)Any specified delimiter
D)Hyphen
Answers
Answered by
0
Any specified delimiter is the right answer.
The separator which is enclosed within the string function is used to separate the set of characters in the string.
If none of the separator is mentioned in the bracket then the set of characters are separated by white space.
Even the number of times of separation is also mentioned.
The separator which is enclosed within the string function is used to separate the set of characters in the string.
If none of the separator is mentioned in the bracket then the set of characters are separated by white space.
Even the number of times of separation is also mentioned.
Similar questions