Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

clear python list

your_list = [1,2,3,4,5,6,7,8,9,10]
your_list.clear() #List becomes [] empty
Comment

Python List clear()

# list of cars
cars = ['Benz',('volkswagen','BMW'),'Ford','Ferrari',('volkswagen','BMW')]
numbers= [1,(1,3),5,7,(1,3),3,1,6,(1,3)]

# deletes all the elements in the car list
del cars[:]
print("After clearing the car list = ",cars)

# deletes all the elements in the number list
del numbers[:]
print("After clearing the number list = ",numbers)
Comment

Python List clear()

# list of cars
cars = ['Benz',('volkswagen','BMW'),'Ford','Ferrari',('volkswagen','BMW')]
numbers= [1,(1,3),5,7,(1,3),3,1,6,(1,3)]

# clear the car list
cars.clear()
print("After clearing the car list = ",cars)

# clear the number list
numbers.clear()
print("After clearing the number list = ",numbers)
Comment

python list clear vs del

del list

Comment

Clear List In Python

h = "hello world"
p = []
p[0:] = h
print(p.clear())
Comment

PREVIOUS NEXT
Code Example
Python :: python how to print 
Python :: remove item in dict 
Python :: NaN stand for python 
Python :: is the multiply code in python 
Python :: python nested object to dict 
Python :: cmap seaborn 
Python :: how to use python all() function to check a list is empty or not 
Python :: activate virtual environment python in linux 
Python :: adding array to array python 
Python :: python 3.8 release date 
Python :: floor function in python 
Python :: pandas drop rows 
Python :: add new element to python dictionary 
Python :: python 3.8 vs 3.10 
Python :: django form date picker 
Python :: opencv python install windows 
Python :: setup vs code for python 
Python :: object has no attribute python 
Python :: facet grid, barplot, catplot 
Python :: replace NaN value in pandas data frame with zeros 
Python :: tessellation 
Python :: how to set default value in many2one 
Python :: sum of multiples of 5 from 1 to 100 
Python :: Third step creating python project 
Python :: seewave python 
Python :: #Combine two sets on python with for loop 
Python :: math is python 
Python :: Groupby geek link 
Python :: why does async def not work python 
Python :: how to code a discord bot in python nextcord 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =