Python | Output Type | Question 9
What is the output of the following program :
print 'abcefd' .replace( 'cd' , '12' ) |
chevron_right
filter_none
(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