How to delete element in an array without using python builtin functions
I have tried this program with builtin functions, but I do not know how to do it without them
c = [6,7,8,9]
c.remove(c[0])
print(c)
I am getting expected result but I want it without using the built-in function in python.