Do all of this in a .py file in Pycharm.
Create a variable called arctic_animals and assign it the list ["penguin", "elephant", "polar bear", "walrus", "tiger", "reindeer"]
Use del to remove "tiger" from the list assigned to arctic_animals.
Use the .remove() method to remove the string "elephant" from the list assigned to arctic_animals.
Use the .append() method to add the string "arctic fox" to the list arctic_animals.
Use .insert() to insert the string "snowy owl" between the strings "polar bear" and "walrus" inside of arctic_animals.
Use the .sort() method to rearrange the strings in arctic_animals into alphabetical order.
Use print() to display the list assigned to arctic_animals
Use .index() to get the index number of "reindeer" from arctic_animals then print it.
Use .pop() to get the last item from the list arctic_animals then print it.