Report Bug
Qus :

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

print('xyyxyyxyxyxxy'.replace('xy', '12', 100))

Qus

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

print('xyyxyyxyxyxxy'.replace('xy', '12', 100))


A. xyyxyyxyxyxxy
B. 12y12y1212x12
C. none of the mentioned
D. error


Solution
B. 12y12y1212x12



Explanation
The first 100 occurrences of the given substring are replaced.



Report Bug