Write a python function that removes element from a list using a user provided number
Topic: Write a python function that removes element from a list using a user provided number
Solution
def drop(a, n = 1): return a[n:]
List all Python Programs
Solution
def drop(a, n = 1): return a[n:]