Open In App

Python | Output Type | Question 8

What is the output of the following program : 




print \'abef\'.partition(\'cd\')

(A)



(‘abef’)

(B)



(‘abef’, ‘cd’, ”)

(C)

(‘abef’, ”, ”)

(D)

Error

Answer: (C)
Explanation:

The separator is not present in the string hence the second and the third elements of the tuple are null strings.

Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :