What is the output of following?
print(“abcabcab”.split(‘c’))
Answers
Answered by
5
['ab', 'ab', 'ab']
It splits the string on every occurrence of c into a list
Answered by
0
Answer:
Error
Explanation:
Similar questions