Question: What will be the output for the following code segment? my_sentence = on bar duck i run each team my_sentence = my sentence.replace(i run,CHAI) print(my_sentence)

What will be the output for the following code segment? my_sentence = "on bar duck i run each team" my_sentence = my sentence.replace("i run","CHAI") print(my_sentence) Yantnz: Oon bar duck i run each team Oon bar duck chai each team Oon bar duck CHAI each team O Error / None of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
