summaryrefslogtreecommitdiff
path: root/progs/a9.py
blob: 369c24d2534a94c66d3e0abe27bb1bace18f533c (plain)
1
2
def remove_kth_element(list1, L):
    return  list1[:L-1] + list1[L:]