List Item 1 Write a description for this list item and include information that will interest site visitors. For example, you may want to describe a team member's experience, what makes a product special, or a unique service that you offer.
Item Link List Item 1List Item 2 Write a description for this list item and include information that will interest site visitors. For example, you may want to describe a team member's experience, what makes a product special, or a unique service that you offer.
Item Link List Item 2List Item 3 Write a description for this list item and include information that will interest site visitors. For example, you may want to describe a team member's experience, what makes a product special, or a unique service that you offer.
Item Link List Item 3List Item 4 Write a description for this list item and include information that will interest site visitors. For example, you may want to describe a team member's experience, what makes a product special, or a unique service that you offer.
Item Link List Item 4New Paragraph
New Paragraph
New Paragraph
In Python, a list is a collection of items that are ordered and changeable. Lists are written with square brackets, and they can contain items of any data type.
Lists are very useful for storing multiple items in a single variable and for performing operations on collections of data. Here's how you can create and work with lists in Python.
my_list = [1, 2, 3, 4, 5]
You can access items in a list by referring to their index number. Note that the first item has an index of 0.
print(my_list[0]) # Output: 1
print(my_list[2]) # Output: 3
You can change the value of a specific item by referring to its index.
my_list[1] = 20
print(my_list) # Output: [1, 20, 3, 4, 5]
You can use the append()
method to add an item to the end of a list, or the insert()
method to add an item at a specified position.
my_list.append(6)
print(my_list) # Output: [1, 20, 3, 4, 5, 6]
my_list.insert(1, 15)
print(my_list) # Output: [1, 15, 20, 3, 4, 5, 6]
You can use the remove()
method to remove a specific item, or the pop()
method to remove an item at a specified index (or the last item if no index is specified).
my_list.remove(20)
print(my_list) # Output: [1, 15, 3, 4, 5, 6]
my_list.pop(2)
print(my_list) # Output: [1, 15, 4, 5, 6]
You can loop through the items in a list using a for
loop.
for item in my_list:
print(item)
Imagine you are organizing a birthday party and you want to keep track of the guests who have RSVPed. You can use a list to store the names of the guests.
guests = ["Alice", "Bob", "Charlie", "David"]
# Adding a new guest
guests.append("Eve")
# Removing a guest
guests.remove("Charlie")
# Checking the guest list
for guest in guests:
print(guest)
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
numbers = [1, 2, 3, 4, 5]
print(len(numbers)) # Output: 5
numbers = [1, 2, 3, 4, 5]
total = 0
for number in numbers:
total += number
print(total) # Output: 15
numbers = [1, 2, 3, 4, 5]
max_number = numbers[0]
for number in numbers:
if number > max_number:
max_number = number
print(max_number) # Output: 5
numbers = [5, 2, 9, 1, 5, 6]
numbers.sort()
print(numbers) # Output: [1, 2, 5, 5, 6, 9]
list1 = [1, 2, 3]
list2 = [4, 5, 6]
merged_list = list1 + list2
print(merged_list) # Output: [1, 2, 3, 4, 5, 6]
All Rights Reserved | Sandy Learning Hub
Powered by Yectra