Tech Study

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

Introduction

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

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

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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more