adplus-dvertising
frame-decoration

Question

What is the output of the following code ?
>>>example = "snow world"
>>>example[3] = 's'
>>>print example

a.

snow

b.

snow world

c.

Error

d.

snos world

Posted under Strings in Python Python

Answer: (c).Error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following code ?