[ Write a python function to remove all the even numbers from a list and return the remaining list ]
def remove_even(my_list):
result = list(filter(lambda x: (x % 2 != 0), my_list))
return result
def remove_even(my_list):
result = list(filter(lambda x: (x % 2 != 0), my_list))
return result