Skip to main content

Command Palette

Search for a command to run...

6 Examples of Python append method

Updated
1 min readView as Markdown
D

Owner of howtouselinux.com. I work as a Linux engineer for over 20 years. Now I am a technical blogger and Software Engineer. I enjoy sharing learning and contributing to open-source.

Example 1

#a list

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

#append item to list

cars.append('Audi')

print(cars)

Example 2

list = ['Hello', 1, '@']

list.append(2)

list

['Hello', 1, '@', 2]

Example 3

list = ['Hello', 1, '@', 2]

list.append((3, 4))

list

['Hello', 1, '@', 2, (3, 4)]

Example 4

list.append([3, 4])

list

['Hello', 1, '@', 2, (3, 4), [3, 4]]

Example 5

list.append(3, 4)

Traceback (most recent call last):

File "", line 1, in

TypeError: append() takes exactly one argument (2 given)

Example 6

list.extend([5, 6])

list

['Hello', 1, '@', 2, (3, 4), [3, 4], 5, 6]

list.extend((5, 6))

list

['Hello', 1, '@', 2, (3, 4), [3, 4], 5, 6, 5, 6]

list.extend(5, 6)

Traceback (most recent call last):

File "", line 1, in

TypeError: extend() takes exactly one argument (2 given)

Reference:

how to append list in python

how to add items to a list in python

More from this blog

Linux Skills

26 posts