SlideShare a Scribd company logo
Python Lists
mylist = ["apple", "banana", "cherry"]
List
Lists are used to store multiple items in a single variable.
Lists are one of 4 built-in data types in Python used to store collections of data,
the other 3 are Tuple, Set, and Dictionary, all with different qualities and usage.
Lists are created using square brackets
ExampleGet your ownPython Server
Create a List:
thislist = ["apple", "banana", "cherry"]
print(thislist)
List Items
List items are ordered, changeable, and allow duplicate values.
List items are indexed, the first item has index [0], the second item
has index [1] etc.
Ordered
When we say that lists are ordered, it means that the items
have a defined order, and that order will not change.
If you add new items to a list, the new items will be placed at
the end of the list.
Changeable
The list is changeable, meaning that we can change, add,
and remove items in a list after it has been created.
Since lists are indexed, lists can have items with the
same value:
Allow Duplicates
Lists allow duplicate values:
thislist =
["apple", "banana", "cherry", "apple", "c
herry”]
print(thislist)
List Length
To determine how many items a list has, use the len() function:
Example
Print the number of items in the list:
Thislist=["apple", "banana", "cherry"]
print(len(thislist))
List Items - Data Types String, int and boolean data types:
list1 = ["apple", "banana", "cherry"]
list2 = [1, 5, 7, 9, 3]
list3 = [True, False, False]
List items can be of any data type:
A list can contain different data types:
Example
A list with strings, integers and boolean values:
list1 = ["abc", 34, True, 40, "male"]
type()
From Python's perspective, lists
are defined as objects with the
data type 'list':
<class 'list'>
What is the data type of
a list?
mylist =
["apple", "banana", "c
herry"]
print(type(mylist))
The list() Constructor
It is also possible to use
the list() constructor when creating a new
list.
Example
Using the list() constructor to make a List:
thislist =
list(("apple", "banana", "cherry")) #
note the double round-brackets
print(thislist)
Python Collections (Arrays)
There are four collection data types in the Python
programming language:
• List is a collection which is ordered and changeable. Allows duplicate
members.
• Tuple is a collection which is ordered and unchangeable. Allows duplicate
members.
• Set is a collection which is unordered, unchangeable, and unindexed. No
duplicate members.
• Dictionary is a collection which is ordered and changeable. No duplicate
members.
note
• When choosing a collection type, it is useful to
understand the properties of that type. Choosing the
right type for a particular data set could mean retention
of meaning, and, it could mean an increase in efficiency
or security.
Access List Items
List items are indexed and you can access them by
referring to the index number:
Print the second item of the list:
thislist =
["apple", "banana", "cherry"]
print(thislist[1])
Negative Indexing
Negative indexing means start from the end
-1 refers to the last item, -2 refers to the second last item
etc.
Example
Print the last item of the list:
thislist =
["apple", "banana", "cherry"]
print(thislist[-1])
Try it Yourself
Range of Indexes
• You can specify a range of indexes by specifying where
to start and where to end the range.
• When specifying a range, the return value will be a new
list with the specified items.
• Question : Return the third, fourth, and fifth item:
• thislist =
["apple", "banana", "cherry", "orange", "kiwi", "me
lon", "mango"]
print(thislist[2:5])
By leaving out the start value, the range will start at the
first item:
• Example
• This example returns the items from the beginning to,
but NOT including, "kiwi":
thislist =
["apple", "banana", "cherry", "orange", "kiwi", "mel
on", "mango"]
print(thislist[:4])
By leaving out the end value, the range will go on to the end of
the list:
Example
• This example returns the items from "cherry" to the
end:
thislist =
["apple", "banana", "cherry", "orange", "kiwi", "mel
on", "mango"]
print(thislist[2:])
Range of Negative Indexes
Specify negative indexes if you want to start the search
from the end of the list:
• Example
• This example returns the items from "orange" (-4) to,
but NOT including "mango" (-1):
• thislist =
["apple", "banana", "cherry", "orange", "kiwi", "me
lon", "mango"]
print(thislist[-4:-1])
Check if Item Exists
To determine if a specified item is present in a list use the in keyword:
Example
• Check if "apple" is present in the list:
thislist = ["apple", "banana", "cherry"]
if "apple" in thislist:
print("Yes, 'apple' is in the fruits list")
Change List Items
To change the value of a specific item, refer to the index
number:
Example:-Python Serve
• Change the second item:
thislist = ["apple", "banana", "cherry"]
thislist[1] = "blackcurrant"
print(thislist)
• Try it Yo
Change a Range of Item Values
• To change the value of items within a specific range, define
a list with the new values, and refer to the range of index
numbers where you want to insert the new values:
Example
Change the values "banana" and "cherry" with the values
"blackcurrant" and "watermelon":
thislist =
["apple", "banana", "cherry", "orange", "kiwi", "mango"]
thislist[1:3] = ["blackcurrant", "watermelon"]
print(thislist)
If you insert more items than you replace, the new items
will be inserted where you specified, and the remaining
items will move accordingly:
Example
• Change the second value by replacing it with two new
values:
thislist = ["apple", "banana", "cherry"]
thislist[1:2] = ["blackcurrant", "watermelon"]
print(thislist)
Note: The length of the list will
change when the number of items
inserted does not match the number
of items replaced.
If you insert less items than you replace, the new items
will be inserted where you specified, and the remaining
items will move accordingly:
Example
• Change the second and third value by replacing it
with one value:
thislist = ["apple", "banana", "cherry"]
thislist[1:3] = ["watermelon"]
print(thislist)
Insert Items
To insert a new list item, without replacing any of the existing values,
we can use the insert() method.
The insert() method inserts an item at the specified index:
Example
Insert "watermelon" as the third item:
thislist =
["apple", "banana", "cherry"]
thislist.insert(2, "watermelon")
print(thislist)
Note: As a result of the example above, the list
will now contain 4 items.
Add List Items
Append Items
To add an item to the end of the list, use
the append() method:
Example:-t your own Python Serve
Using the append() method to append an item:
thislist = ["apple", "banana", "cherry"]
thislist.append("orange")
print(thislist)
Insert Items
To insert a list item at a specified index, use the insert() method.
The insert() method inserts an item at the specified index:
Example
Insert an item as the second
position:
thislist =
["apple", "banana", "cherry"]
thislist.insert(1, "orange")
print(thislist)
Extend List
To append elements from another list to the
current list, use the extend() method.
Example
Add the elements of tropical to thislist:
thislist = ["apple", "banana", "cherry"]
tropical = ["mango", "pineapple", "papaya"]
thislist.extend(tropical)
print(thislist)
The elements will be added to the end of the list.
Add Any Iterable
The extend() method does not have to append lists,
you can add any iterable object (tuples, sets,
dictionaries etc.).
Example
Add elements of a tuple to a list:
thislist =
["apple", "banana", "cherry"]
thistuple = ("kiwi", "orange")
thislist.extend(thistuple)
print(thislist)
Remove List Items
The remove() method removes the specified item.
ExampleG
own Python Server
Remove "banana":
thislist = ["apple", "banana", "cherry"]
thislist.remove("banana")
print(thislist)
Example
Remove the first occurance of "banana":
thislist =
["apple", "banana", "cherry", "banana", "kiwi"]
thislist.remove("banana")
print(thislist)
If there are more than one item with the specified value,
the remove() method removes the first occurance:
Remove Specified Index
The pop() method removes the specified index.
Example
Remove the second item:
thislist =
["apple", "banana", "cherry"]
thislist.pop(1)
print(thislist)
Example
Remove the last item:
thislist = ["apple", "banana", "cherry"]
thislist.pop()
print(thislist)
• Try it Your
If you do not specify the index, the pop() method removes the last item.
Example
• Remove the first item:
thislist = ["apple", "banana", "cherry"]
del thislist[0]
print(thislist)
• Try it Yourself
The del keyword also removes the specified index:
The del keyword can also delete the list completely.
Delete the entire list:
thislist = ["apple", "banana", "cherry"]
del thislist
Clear the List
The clear() method empties the list.
The list still remains, but it has no content.
Example
Clear the list content:
thislist = ["apple", "banana", "cherry"]
thislist.clear()
print(thislist)
Sort Lists
Sort List Alphanumerically
List objects have a sort() method that will sort the list
alphanumerically, ascending, by default:
ExampleG Python Server
Sort the list alphabetically:
thislist =
["orange", "mango", "kiwi", "pineapple", "banana"]
thislist.sort()
print(thislist)
• Sort the list numerically:
thislist = [100, 50, 65, 82, 23]
thislist.sort()
print(thislist)
Sort Descending
To sort descending, use the keyword argument reverse = True:
Example
Sort the list descending:
thislist =
["orange", "mango", "kiwi", "pineapple",
"banana"]
thislist.sort(reverse = True)
print(thislist)
Example
• Sort the list descending:
• thislist = [100, 50, 65, 82, 23]
thislist.sort(reverse = True)
print(thislist)
Case Insensitive Sort
Case sensitive sorting can give an unexpected result:
thislist = ["banana", "Orange", "Kiwi", "cherry"]
thislist.sort()
print(thislist)
• Luckily we can use built-in functions as key functions when
sorting a list.
• So if you want a case-insensitive sort function, use
str.lower as a key function:
thislist = ["banana", "Orange", "Kiwi", "cherry"]
thislist.sort(key = str.lower)
print(thislist)
By default the sort() method is case sensitive, resulting in all capital lett
being sorted before lower case letters:
Reverse Order
The reverse() method reverses the current sorting order of the elements.
thislist =
["banana", "Orange", "Kiwi", "cherr
y"]
thislist.reverse()
print(thislist)
['cherry', 'Kiwi', 'Orange', 'banana']
Copy a List
You cannot copy a list simply by typing list2 = list1,
because: list2 will only be a reference to list1, and changes made
in list1 will automatically also be made in list2.
There are ways to make a copy, one way is to use the built-in List method copy().
Make a copy of a list with the copy() method:
thislist = ["apple", "banana", "cherry"]
mylist = thislist.copy()
print(mylist)
["apple", "banana", "cherry"]
Join Two Lists
here are several ways to join, or concatenate, two or more lists in Python.
One of the easiest ways are by using the + operator.
Join two list:
list1 = ["a", "b", "c"]
list2 = [1, 2, 3]
list3 = list1 + list2
print(list3)
Or you can use the extend() method, where the
purpose is to add elements from one list to another
list:
Use the extend() method to add list2 at the
end of list1:
list1 = ["a", "b" , "c"]
list2 = [1, 2, 3]
list1.extend(list2)
print(list1)
List Methods
Python has a set of
built-in methods
that you can use on
lists.

More Related Content

PPTX
LIST_tuple.pptx
PPTX
Python Lists is a a evry jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...
PPTX
List in Python
PPTX
Python Tuples.pptx
PDF
PPTX
Tuple in python
PPTX
tuple in python is an impotant topic.pptx
LIST_tuple.pptx
Python Lists is a a evry jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj...
List in Python
Python Tuples.pptx
Tuple in python
tuple in python is an impotant topic.pptx

Similar to Python Lists.pptx (20)

PDF
Python data handling notes
PPTX
Python_Sets(1).pptx
PPTX
Python Collection datatypes
PPTX
list and control statement.pptx
PPTX
RANDOMISATION-NUMERICAL METHODS FOR ENGINEERING.pptx
PPTX
UNIT-4.pptx python for engineering students
PPTX
11 Introduction to lists.pptx
PPTX
Python 7 Python in easy way It includes different data type
PPTX
Pa1 lists subset
PPTX
Introduction To Programming with Python-4
PPTX
PYTHON-PROGRAMMING-UNIT-III.pptx kghbg kfhjf jruufg jtuuf
PPTX
powerpoint 2-13.pptx
PPTX
Python Array Power Point Presentation.pptx
PPTX
updated_list.pptx
PDF
Python revision tour II
PDF
Python - Lecture 3
PPTX
File handling in pythan.pptx
PPT
List.ppt
PPTX
Decision control units by Python.pptx includes loop, If else, list, tuple and...
Python data handling notes
Python_Sets(1).pptx
Python Collection datatypes
list and control statement.pptx
RANDOMISATION-NUMERICAL METHODS FOR ENGINEERING.pptx
UNIT-4.pptx python for engineering students
11 Introduction to lists.pptx
Python 7 Python in easy way It includes different data type
Pa1 lists subset
Introduction To Programming with Python-4
PYTHON-PROGRAMMING-UNIT-III.pptx kghbg kfhjf jruufg jtuuf
powerpoint 2-13.pptx
Python Array Power Point Presentation.pptx
updated_list.pptx
Python revision tour II
Python - Lecture 3
File handling in pythan.pptx
List.ppt
Decision control units by Python.pptx includes loop, If else, list, tuple and...
Ad

More from adityakumawat625 (15)

PDF
continous random variable in probablity and statistics for CSE
PDF
expectation and variance of C.R.V in prob and stat
PPTX
Data Analytics.pptx
PPTX
Python Operators.pptx
PPTX
Python Data Types,numbers.pptx
PPTX
Python comments and variables.pptx
PPTX
Python Variables.pptx
PPTX
Python Strings.pptx
PPTX
python intro and installation.pptx
PPTX
sql datatypes.pptx
PPTX
sql_operators.pptx
PPTX
SQL Tables.pptx
PPTX
create database.pptx
PPTX
SQL syntax.pptx
PPTX
Introduction to SQL.pptx
continous random variable in probablity and statistics for CSE
expectation and variance of C.R.V in prob and stat
Data Analytics.pptx
Python Operators.pptx
Python Data Types,numbers.pptx
Python comments and variables.pptx
Python Variables.pptx
Python Strings.pptx
python intro and installation.pptx
sql datatypes.pptx
sql_operators.pptx
SQL Tables.pptx
create database.pptx
SQL syntax.pptx
Introduction to SQL.pptx
Ad

Recently uploaded (20)

PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
System and Network Administration Chapter 2
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
Transform Your Business with a Software ERP System
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
history of c programming in notes for students .pptx
PDF
Nekopoi APK 2025 free lastest update
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
medical staffing services at VALiNTRY
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
Which alternative to Crystal Reports is best for small or large businesses.pdf
System and Network Administration Chapter 2
VVF-Customer-Presentation2025-Ver1.9.pptx
Wondershare Filmora 15 Crack With Activation Key [2025
Transform Your Business with a Software ERP System
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Operating system designcfffgfgggggggvggggggggg
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Design an Analysis of Algorithms II-SECS-1021-03
history of c programming in notes for students .pptx
Nekopoi APK 2025 free lastest update
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
ISO 45001 Occupational Health and Safety Management System
medical staffing services at VALiNTRY
Navsoft: AI-Powered Business Solutions & Custom Software Development
How to Choose the Right IT Partner for Your Business in Malaysia
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...

Python Lists.pptx

  • 1. Python Lists mylist = ["apple", "banana", "cherry"]
  • 2. List Lists are used to store multiple items in a single variable. Lists are one of 4 built-in data types in Python used to store collections of data, the other 3 are Tuple, Set, and Dictionary, all with different qualities and usage. Lists are created using square brackets
  • 3. ExampleGet your ownPython Server Create a List: thislist = ["apple", "banana", "cherry"] print(thislist)
  • 4. List Items List items are ordered, changeable, and allow duplicate values. List items are indexed, the first item has index [0], the second item has index [1] etc. Ordered When we say that lists are ordered, it means that the items have a defined order, and that order will not change. If you add new items to a list, the new items will be placed at the end of the list.
  • 5. Changeable The list is changeable, meaning that we can change, add, and remove items in a list after it has been created. Since lists are indexed, lists can have items with the same value: Allow Duplicates Lists allow duplicate values: thislist = ["apple", "banana", "cherry", "apple", "c herry”] print(thislist)
  • 6. List Length To determine how many items a list has, use the len() function: Example Print the number of items in the list: Thislist=["apple", "banana", "cherry"] print(len(thislist)) List Items - Data Types String, int and boolean data types: list1 = ["apple", "banana", "cherry"] list2 = [1, 5, 7, 9, 3] list3 = [True, False, False] List items can be of any data type:
  • 7. A list can contain different data types: Example A list with strings, integers and boolean values: list1 = ["abc", 34, True, 40, "male"] type() From Python's perspective, lists are defined as objects with the data type 'list': <class 'list'> What is the data type of a list? mylist = ["apple", "banana", "c herry"] print(type(mylist))
  • 8. The list() Constructor It is also possible to use the list() constructor when creating a new list. Example Using the list() constructor to make a List: thislist = list(("apple", "banana", "cherry")) # note the double round-brackets print(thislist)
  • 9. Python Collections (Arrays) There are four collection data types in the Python programming language: • List is a collection which is ordered and changeable. Allows duplicate members. • Tuple is a collection which is ordered and unchangeable. Allows duplicate members. • Set is a collection which is unordered, unchangeable, and unindexed. No duplicate members. • Dictionary is a collection which is ordered and changeable. No duplicate members.
  • 10. note • When choosing a collection type, it is useful to understand the properties of that type. Choosing the right type for a particular data set could mean retention of meaning, and, it could mean an increase in efficiency or security.
  • 11. Access List Items List items are indexed and you can access them by referring to the index number: Print the second item of the list: thislist = ["apple", "banana", "cherry"] print(thislist[1])
  • 12. Negative Indexing Negative indexing means start from the end -1 refers to the last item, -2 refers to the second last item etc. Example Print the last item of the list: thislist = ["apple", "banana", "cherry"] print(thislist[-1]) Try it Yourself
  • 13. Range of Indexes • You can specify a range of indexes by specifying where to start and where to end the range. • When specifying a range, the return value will be a new list with the specified items. • Question : Return the third, fourth, and fifth item: • thislist = ["apple", "banana", "cherry", "orange", "kiwi", "me lon", "mango"] print(thislist[2:5])
  • 14. By leaving out the start value, the range will start at the first item: • Example • This example returns the items from the beginning to, but NOT including, "kiwi": thislist = ["apple", "banana", "cherry", "orange", "kiwi", "mel on", "mango"] print(thislist[:4])
  • 15. By leaving out the end value, the range will go on to the end of the list: Example • This example returns the items from "cherry" to the end: thislist = ["apple", "banana", "cherry", "orange", "kiwi", "mel on", "mango"] print(thislist[2:])
  • 16. Range of Negative Indexes Specify negative indexes if you want to start the search from the end of the list: • Example • This example returns the items from "orange" (-4) to, but NOT including "mango" (-1): • thislist = ["apple", "banana", "cherry", "orange", "kiwi", "me lon", "mango"] print(thislist[-4:-1])
  • 17. Check if Item Exists To determine if a specified item is present in a list use the in keyword: Example • Check if "apple" is present in the list: thislist = ["apple", "banana", "cherry"] if "apple" in thislist: print("Yes, 'apple' is in the fruits list")
  • 18. Change List Items To change the value of a specific item, refer to the index number: Example:-Python Serve • Change the second item: thislist = ["apple", "banana", "cherry"] thislist[1] = "blackcurrant" print(thislist) • Try it Yo
  • 19. Change a Range of Item Values • To change the value of items within a specific range, define a list with the new values, and refer to the range of index numbers where you want to insert the new values: Example Change the values "banana" and "cherry" with the values "blackcurrant" and "watermelon": thislist = ["apple", "banana", "cherry", "orange", "kiwi", "mango"] thislist[1:3] = ["blackcurrant", "watermelon"] print(thislist)
  • 20. If you insert more items than you replace, the new items will be inserted where you specified, and the remaining items will move accordingly: Example • Change the second value by replacing it with two new values: thislist = ["apple", "banana", "cherry"] thislist[1:2] = ["blackcurrant", "watermelon"] print(thislist) Note: The length of the list will change when the number of items inserted does not match the number of items replaced.
  • 21. If you insert less items than you replace, the new items will be inserted where you specified, and the remaining items will move accordingly: Example • Change the second and third value by replacing it with one value: thislist = ["apple", "banana", "cherry"] thislist[1:3] = ["watermelon"] print(thislist)
  • 22. Insert Items To insert a new list item, without replacing any of the existing values, we can use the insert() method. The insert() method inserts an item at the specified index: Example Insert "watermelon" as the third item: thislist = ["apple", "banana", "cherry"] thislist.insert(2, "watermelon") print(thislist) Note: As a result of the example above, the list will now contain 4 items.
  • 23. Add List Items Append Items To add an item to the end of the list, use the append() method: Example:-t your own Python Serve Using the append() method to append an item: thislist = ["apple", "banana", "cherry"] thislist.append("orange") print(thislist)
  • 24. Insert Items To insert a list item at a specified index, use the insert() method. The insert() method inserts an item at the specified index: Example Insert an item as the second position: thislist = ["apple", "banana", "cherry"] thislist.insert(1, "orange") print(thislist)
  • 25. Extend List To append elements from another list to the current list, use the extend() method. Example Add the elements of tropical to thislist: thislist = ["apple", "banana", "cherry"] tropical = ["mango", "pineapple", "papaya"] thislist.extend(tropical) print(thislist) The elements will be added to the end of the list.
  • 26. Add Any Iterable The extend() method does not have to append lists, you can add any iterable object (tuples, sets, dictionaries etc.). Example Add elements of a tuple to a list: thislist = ["apple", "banana", "cherry"] thistuple = ("kiwi", "orange") thislist.extend(thistuple) print(thislist)
  • 27. Remove List Items The remove() method removes the specified item. ExampleG own Python Server Remove "banana": thislist = ["apple", "banana", "cherry"] thislist.remove("banana") print(thislist)
  • 28. Example Remove the first occurance of "banana": thislist = ["apple", "banana", "cherry", "banana", "kiwi"] thislist.remove("banana") print(thislist) If there are more than one item with the specified value, the remove() method removes the first occurance:
  • 29. Remove Specified Index The pop() method removes the specified index. Example Remove the second item: thislist = ["apple", "banana", "cherry"] thislist.pop(1) print(thislist)
  • 30. Example Remove the last item: thislist = ["apple", "banana", "cherry"] thislist.pop() print(thislist) • Try it Your If you do not specify the index, the pop() method removes the last item.
  • 31. Example • Remove the first item: thislist = ["apple", "banana", "cherry"] del thislist[0] print(thislist) • Try it Yourself The del keyword also removes the specified index: The del keyword can also delete the list completely. Delete the entire list: thislist = ["apple", "banana", "cherry"] del thislist
  • 32. Clear the List The clear() method empties the list. The list still remains, but it has no content. Example Clear the list content: thislist = ["apple", "banana", "cherry"] thislist.clear() print(thislist)
  • 33. Sort Lists Sort List Alphanumerically List objects have a sort() method that will sort the list alphanumerically, ascending, by default: ExampleG Python Server Sort the list alphabetically: thislist = ["orange", "mango", "kiwi", "pineapple", "banana"] thislist.sort() print(thislist)
  • 34. • Sort the list numerically: thislist = [100, 50, 65, 82, 23] thislist.sort() print(thislist)
  • 35. Sort Descending To sort descending, use the keyword argument reverse = True: Example Sort the list descending: thislist = ["orange", "mango", "kiwi", "pineapple", "banana"] thislist.sort(reverse = True) print(thislist)
  • 36. Example • Sort the list descending: • thislist = [100, 50, 65, 82, 23] thislist.sort(reverse = True) print(thislist)
  • 37. Case Insensitive Sort Case sensitive sorting can give an unexpected result: thislist = ["banana", "Orange", "Kiwi", "cherry"] thislist.sort() print(thislist) • Luckily we can use built-in functions as key functions when sorting a list. • So if you want a case-insensitive sort function, use str.lower as a key function: thislist = ["banana", "Orange", "Kiwi", "cherry"] thislist.sort(key = str.lower) print(thislist) By default the sort() method is case sensitive, resulting in all capital lett being sorted before lower case letters:
  • 38. Reverse Order The reverse() method reverses the current sorting order of the elements. thislist = ["banana", "Orange", "Kiwi", "cherr y"] thislist.reverse() print(thislist) ['cherry', 'Kiwi', 'Orange', 'banana']
  • 39. Copy a List You cannot copy a list simply by typing list2 = list1, because: list2 will only be a reference to list1, and changes made in list1 will automatically also be made in list2. There are ways to make a copy, one way is to use the built-in List method copy(). Make a copy of a list with the copy() method: thislist = ["apple", "banana", "cherry"] mylist = thislist.copy() print(mylist) ["apple", "banana", "cherry"]
  • 40. Join Two Lists here are several ways to join, or concatenate, two or more lists in Python. One of the easiest ways are by using the + operator. Join two list: list1 = ["a", "b", "c"] list2 = [1, 2, 3] list3 = list1 + list2 print(list3)
  • 41. Or you can use the extend() method, where the purpose is to add elements from one list to another list: Use the extend() method to add list2 at the end of list1: list1 = ["a", "b" , "c"] list2 = [1, 2, 3] list1.extend(list2) print(list1)
  • 42. List Methods Python has a set of built-in methods that you can use on lists.