List append(obj) Method

In Python Built-In List append(obj) method is used to append a passed obj into the existing list.

Syntax:
There is 1 Parameter used in list append(obj) method: obj Shows the object to be appended in the list.
Example:
#method

list1 = ['BOB', 'TOM']
list1.append( 2020 );
print ("Updated List : ", list1)