Report Bug
Qus :

What will be the output of the following Python code snippet?

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

Qus

निम्नलिखित Python कोड स्निपेट का आउटपुट क्या होगा?

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


A. (‘abef’)
B. (‘abef’, ‘cd’, ”)
C. (‘abef’, ”, ”)
D. error


Solution
C. (‘abef’, ”, ”)



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



Report Bug