الرجوع
تسجيل الدخول

What is the output of the following code?

a = [1, 2, 3]
b = a
b[0] = 17
print(a)