Complete the 10 challenges, see the started code on Repl Teams. Use the Lists overview to help you out.
Create a list with 10 numbers
Append a number
Insert a number to first position
Insert a number in any position besides front and end
Print the number of elements in the list using the correct function
Remove the first element in the list
Remove the last element in the list
Print the first element in any list
Print the last element in any list
hint: use len(...) - 1
Print the element in the middle of any list
hint: use len(...) / 2