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

What is the output of the following code?

t1 = ['a', 'b', 'c']
t2 = ['d', 'e']
t1.extend(t2)
print(t1)