#try to avoid input function a = [1,2,3,4,55,66,77,88,99,"hello","world","python"] for i in range(len(a)): del(a[0]) print(a)
Click the run button. Try to avoid input() function.