1.

What is the output of the following? print('abcdef'.partition('cd'))

A. (‘ab’, ‘ef’)
B. (‘abef’)
C. (‘ab’, ‘cd’, ‘ef’)
D. 2
Answer» D. 2


Discussion

No Comment Found