Open In App

Python | Output Type | Question 8

Like Article
Like
Save Article
Save
Share
Report issue
Report

What is the output of the following program : 

Python3




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


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads