Write a Python program to remove the first item from a specified list
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']
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
I have used python 3.7 compiler for debugging purpose.
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