What will be the output of the following Python code?
>>>example = "snow world"
>>>example[3] = 's'
>>>print example
>>>example = "snow world"
>>>example[3] = 's'
>>>print exampleA. snow
B. snow world
C. Error
D. snos world
Answer: Option C

Join The Discussion