Python | Output Type | Question 7
What is the output of the following program :
Python3
print \ 'cd\'.partition(\'cd\' ) |
(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
Please Login to comment...