
# https://www.globalsino.com/ICs/page4853.html
# append

a=[1,2,3,4]
print ('a =', a, '\n')

# Copy the list.
j = []
for item in a:
    j.append(item) 
print ('j =', j, '\n')

# Add an item at the end of the list
a.append("orange")
print (a)


# Add a list at the end of the list
b = ["Screen", "PC"]
a.append(b)
print(a)
