Bản quyền thuộc về TITV.vn,
vui lòng không đăng tải lại nội dung từ trang này.
Video giải thích chi tiết
In [1]:
# Tạo list rỗng
emptyList = []
# Tạo ra một đối tượng list
emptyList2 = list()
print(emptyList)
print(emptyList2)
[] []
In [2]:
#Tạo ra list có dữ liệu
colors = ["red", "green", "orange", 1, 2]
print(colors)
['red', 'green', 'orange']
In [35]:
# list có thứ tự, vị trí các phần tử được đánh dấu từ 0, từ trái sang phải
studentList = ["An", "Bình", "Ngân", "Vy"]
print(studentList[2])
print(studentList[0])
Ngân An
In [6]:
print(studentList)
print(studentList[:])
['An', 'Bình', 'Ngân', 'Vy'] ['An', 'Bình', 'Ngân', 'Vy']
In [10]:
# studentList[x:y] => lấy ra [x:y)
print(studentList[1:2])
print(studentList[0:2])
print(studentList[1:4])
['Bình'] ['An', 'Bình'] ['Bình', 'Ngân', 'Vy']
In [36]:
# Thêm phân từ vào cuối list
studentList.append("Thiên")
print(studentList)
studentList[len(studentList):] = ["Thành"]
print(studentList)
['An', 'Bình', 'Ngân', 'Vy', 'Thiên'] ['An', 'Bình', 'Ngân', 'Vy', 'Thiên', 'Thành']
In [37]:
# Chèn phần tử vào list
studentList.insert(2, "Ngọc")
print(studentList)
['An', 'Bình', 'Ngọc', 'Ngân', 'Vy', 'Thiên', 'Thành']
In [4]:
# Số lượng phần tử có trong list: => len
In [8]:
print(len(studentList))
10
In [12]:
# Đếm số lượng phần tử thỏa điều kiện
print("Đếm Ngọc: ", studentList.count("Ngọc"))
print("Đếm Thành: ", studentList.count("Thành"))
print("Đếm An: ", studentList.count("An"))
Đếm Ngọc: 3 Đếm Thành: 2 Đếm An: 1
In [34]:
# Kiểm tra phần tử có bên trong list: in
#Xóa phần tử ra khỏi list bằng giá trị
#studentList.remove("Ngân")
#print(studentList)
if "Ngọc" in studentList:
studentList.remove("Ngọc")
print(studentList)
#Xóa phần tử ra khỏi list bằng vị trí
studentList.pop(0)
print(studentList)
['Thiên', 'Thành', 'Thiên', 'Thành', 'Thiên', 'Thành']
In [38]:
print(studentList)
['An', 'Bình', 'Ngọc', 'Ngân', 'Vy', 'Thiên', 'Thành']
In [40]:
# Đảo ngược list
studentList.reverse()
print(studentList)
['Thành', 'Thiên', 'Vy', 'Ngân', 'Ngọc', 'Bình', 'An']
In [41]:
# Sắp xếp list
studentList.sort()
print(studentList)
['An', 'Bình', 'Ngân', 'Ngọc', 'Thiên', 'Thành', 'Vy']
In [42]:
numbers = [7, 5, 1, 9, 0, 5, 7]
numbers.sort()
print(numbers)
[0, 1, 5, 5, 7, 7, 9]
In [43]:
# Sắp xếp ngược
studentList.sort(reverse=True)
print(studentList)
['Vy', 'Thành', 'Thiên', 'Ngọc', 'Ngân', 'Bình', 'An']
In [44]:
numbers.sort(reverse=True)
print(numbers)
[9, 7, 7, 5, 5, 1, 0]
In [45]:
# Xóa sạch dữ liệu trong list
studentList.clear()
print(studentList)
[]
In [ ]:
Không có nhận xét nào:
Đăng nhận xét