Python | Output Type | Question 9
What is the output of the following program :
Python3
print \ 'abcefd\'.replace(\'cd\', \'12\' ) |
(A)
ab1ef2
(B)
abcefd
(C)
ab1efd
(D)
ab12ed2
Answer: (B)
Explanation:
The first substring is not present in the given string and hence nothing is replaced.
Quiz of this Question
Please comment below if you find anything wrong in the above post
Please Login to comment...