Q:

Write a Python program to remove the first item from a specified list

0

Write a Python program to remove the first item from a specified list

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used python 3.7 compiler for debugging purpose.

Car = ["AUDI", "FERRARI", "HONDA", "Bentley", "Bugatti"]
print("\nOriginal Car: ",Car)
del Car[0]
print("After removing the first Car: ",Car)
print()

Result:

Original Car:  ['AUDI', 'FERRARI', 'HONDA', 'Bentley', 'Bugatti']

After removing the first Car:  ['FERRARI', 'HONDA', 'Bentley', 'Bugatti']

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now