Report Bug
Qus :

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

print('abef'.replace('cd', '12'))

Qus

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

print('abef'.replace('cd', '12'))


A. abef
B. 12
C. error
D. none of the mentioned


Solution
A. abef



Explanation
The first substring is not present in the given string and hence nothing is replaced.



Report Bug