python append items from list to list code example
Example 1: how to add values to a list in python
myList = []
myList.append(value_to_add)
Example 2: extend in list python
subjects=["Maths","Science","Arts","Commerce"]
subjects_2=["Artificial intelligence","Statistics"]
subjects.extend(subjects_2)
print(subjects) ## used to add more elements from other list