Adding and Removing Items in a List : Append : List PYTHON TUTORIALS


PYTHON TUTORIALS » List » Append »

 

Adding and Removing Items in a List


list1 = ["One""Two""Three"]
list2 = ["Five""Six"]

print list1

#Append item
list1.append("Four")
print list1



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo List
» Append