Assume you are given a list L whose elements are numbers. Write a function keep_positives(L) that mutates L in place so that only the strictly positive numbers remain, in their original order.
The function returns nothing, and the caller must see the change through the very same list object it passed in — do not rebind L to a newly built list.
nums = [3, -1, 0, 7, -8]
keep_positives(nums)
nums -> [3, 7]