+ operator can be used to concatenate lists+ operator may be used for appendingCreate a program that builds a list of 10 randomly generated numbers
* operator can be used to duplicate listscopy method can be used for this[:]) can also be usedappend method can be used to add an item to the end
of a listextend method can add many elements to a listsort method can be used to sort list elements in
placesort always returns NoneNoneCreate a Python program that prints the three largest numbers in a list
pop will remove and return an element at a position (or
the last element by default)del can be used to remove the element without returning
it (can use slices)remove will remove the element by valueCreate a Python program to remove all single-digit numbers from a list