P Praveen Singh π Tutor III β 36.81K Points π Problem Solving and Python Programming Q. What will be the output of the following Python code? 1. >>>example = "snow world" 2. >>>example[3] = 's' 3. >>>print example (A) snow (B) snow world (C) error (D) snos world ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) error Explanation: strings cannot be modified.