Python Program to extend the list
# Programming list
programming_list = ['C','C#','Python','Java']
frontend_programming =['CSS','HTML','JavaScript']
# add the frontend_progamming list into the existing list
programming_list.extend(frontend_programming)
# Note that iterable element is added to the end of the list
print('The new extended list is :', programming_list)