World Languages, asked by nitish0121010, 1 month ago

What is the output of following?
print(“abcabcab”.split(‘c’, 0))

Answers

Answered by prasunmishra
0

Explanation:

In the given question the separator is c and specified position is 0 as in 0 positions no c character is present in given string i.e "abcabcab". So ['abcabcab'] output is print on console.

mark as brainliest

Similar questions