append() – add an entry to the end of a list

Code Example

  1. The first line of the code creates a list named myList and assigns it the values [1, 2, 3, 4, 5].
  2. The second line of the code calls the append method on the myList object. The append method is used to add an element to the end of a list. In this case, the number 6 is being added to the end of myList.
  3. The for loop in the code iterates over the elements of the list myList. For each iteration, the current element is stored in the variable i.
  4. The print function is used to print the current value of i during each iteration of the loop. The end parameter is set to a space character, so that the numbers are printed on the same line with a space between each number.
  5. The loop continues until all elements in myList have been processed.

So, the code creates a list, adds an element to it, and then prints all the elements of the list, separated by a space.

myList = [1, 2, 3, 4, 5]
myList.append(6)

for i in myList:
    print(i, end=" ")
Output
1 2 3 4 5 6