Aşağıdaki kodun çıktısı nedir?
a = [1, 2, 3]
b = a.copy()
b.append(4)
print(b, a)
Geri Atla

Soru 19 / 20