Python Array – delete the first item of the array

del function – del list[index] Here is an example for you Don’t know how to pop the first element of the array in python? Read: Python array – pop the first element of the array Output: Explanation:Here, del c[0] deletes the first element indexed at 0 i.e. the first element. You Missed Also Checkout

Python Array – delete the first item of the array Read More »