M Mr. Dubey π Coach β 103.11K Points π Problem Solving and Python Programming Q. What will be the output of the following Python code? >>> str1 = 'hello' >>> str2 = ',' >>> str3 = 'world' >>> str1[-1:] (A) olleh (B) hello (C) h (D) o ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (D) o Explanation: -1 corresponds to the last index.