List Python Tutorial

list1 = ["One", "Two", "Three"]
list2 = ["Five", "Six"]
print list1
#Append item
list1.append("Four")
print list1