Advertisements
Advertisements
Question
Identify the output of the following code snippet:
text = "PYTHONPROGRAM"
text=text.replace('PY','#')
print(text)
Options
#THONPROGRAM
##THON#ROGRAM
#THON#ROGRAM
#YTHON#ROGRAM
MCQ
Solution
#THONPROGRAM
Explanation:
The replace() function replaces all occurrences of the given substring. Here, 'PY' is replaced with '#'. Only at the beginning of the original string "PYTHONPROGRAM" does the substring 'PY' appear.
shaalaa.com
Is there an error in this question or solution?