Exercise: Conditionally remove element from list

Complete the function remove_if which takes a list of numbers as input. The function should remove the last number of the list if it's less than 4.
Hint: Use 4 spaces for each level of indentation.
Python
Setting up Python environment...
Output