Open In App

Python | Output Type | Question 7

Like Article
Like
Save
Share
Report

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
Previous
Next
Share your thoughts in the comments
Similar Reads