2008-12-17 9 views

Antwort

6
List finalist = a + b 

Beispiel:

List a = [1,4] 
List b = [2,3] 
List c = a+b 

Ergebnis:

c = [1, 4, 2, 3]