✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following Python code of 6 lines, with line numbers (not part of the code) shown on the left.
1 a = 102 b = 203 c = 304 T = ("A","B","C")5 (a,b,c) = (b,c,a)6 T[1] = "b"
Which of the following statement is correct regarding the above code?