Open In App
Related Articles

Python | Output Type | Question 7

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads