Python | Output Type | Question 7
What is the output of the following program :
print 'cd' .partition( 'cd' ) |
chevron_right
filter_none
(A) (‘cd’)
(B) (”)
(C) (‘cd’, ”, ”)
(D) (”, ‘cd’, ”)
Answer: (D)
Explanation: The entire string has been passed as the separator hence the first and the last item of the tuple returned are null strings.
Quiz of this Question
Please comment below if you find anything wrong in the above post