✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
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?