Table of Contents
In this tutorial, we will learn about the Python List clear() method with the help of examples.
The clear()
method removes all items from the list.
Example
prime_numbers = [2, 3, 5, 7, 9, 11] # remove all elements prime_numbers.clear() # Updated prime_numbers List print('List after clear():', prime_numbers) # Output: List after clear(): []
1. Syntax of List clear()
The syntax of clear()
method is:
list.clear()
2. clear() Parameters
The clear()
method doesn’t take any parameters.
3. Return Value from clear()
The clear()
method only empties the given list. It doesn’t return any value.
4. Example 1: Working of clear() method
# Defining a list list = [{1, 2}, ('a'), ['1.1', '2.2']] # clearing the list list.clear() print('List:', list)
Output
List: []
Note: If you are using Python 2 or Python 3.2 and below, you cannot use the clear()
method. You can use the del operator instead.
5. Example 2: Emptying the List Using del
# Defining a list list = [{1, 2}, ('a'), ['1.1', '2.2']] # clearing the list del list[:] print('List:', list)
Output
List: []
Visit this page to learn how del
operator works in Python.
Related posts:
Python bytearray()
Python Type Conversion and Type Casting
Python Numbers, Type Conversion and Mathematics
Python sum()
Python Program to Create Pyramid Patterns
Python Program to Display Calendar
Python Program to Find the Square Root
Python Set intersection()
Python Exception Handling Using try, except and finally statement
Python Program to Slice Lists
Python File I/O Operation
Deep Learning with Python - A Hands-on Introduction - Nikhil Ketkar
Python Program to Add Two Numbers
Ways to Iterate Over a List in Java
Building Machine Learning Systems with Python - Willi Richert & Luis Pedro Coelho
Python Dictionary pop()
Natural Language Processing with Python - Steven Bird & Ewan Klein & Edward Loper
Python Set difference()
Python RegEx
Python dict()
Python List
Python Program to Remove Duplicate Element From a List
Python timestamp to datetime and vice-versa
Python input()
Python Operators
Python Variables, Constants and Literals
Python String isdecimal()
Python all()
Python Program to Trim Whitespace From a String
Python for Loop
Python exec()
Using a List of Values in a JdbcTemplate IN Clause