0
Can we use 'append' to add more than 1 elements to a list at once?
4 Answers
+ 2
list.extend(otherlist)
+ 2
list.extend((el, em, en, ts))
0
yay it worked thanksKevin Dietrichstein so we can add another list to a list but not multiple elements at once
0
thanksKevin Dietrichstein