Answers for "how to use extend in python"

3

how to use extend in python

Non_living_things = ["cars","chair","wire extender "]
Non_living_things.extend(["Paper","Computer","Motherboard "])
print(Non_living_things)
Posted by: Guest on July-30-2021
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
3

python extend

fruits = ['apple', 'banana', 'cherry']
cars = ['Ford', 'BMW', 'Volvo']

fruits.extend(cars)

print(fruits)
# ['apple', 'banana', 'cherry', 'Ford', 'BMW', 'Volvo']
Posted by: Guest on April-15-2021
-1

what is the use of extend in python

The extend() method adds the specified list elements (or any iterable) to the end of the current list.
Posted by: Guest on November-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language