Multiple Choices
(Choose 1 answer)
Which of the following would separate a string input_string on the first 2 occurences of the letter "e"?
A. 'e'.split(input_string, 1)
B. 'e'.split(input_string, 2)
C. 'e'.split(input_string, maxsplit=2)
D. input_string.split('e', maxsplit=2)