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

What is the output of the following code?

t = ['a', 'b', 'c']
x = t.pop(1)
print(t)
print(x)