Answers for "Python list extend() Method"

9

extend a list python

#adding two or more elements in a list
list1 = [1,2,3,4,5]
list1.extend([6,7,8])
print(list1)
#output = [1, 2, 3 ,4 ,5, 6, 7, 8]
Posted by: Guest on May-14-2020
0

Python list extend() Method

fruits = ['apple', 'banana', 'cherry']


    cars = ['Ford', 'BMW', 'Volvo']


    fruits.extend(cars)
Posted by: Guest on June-11-2021

Python Answers by Framework

Browse Popular Code Answers by Language