资料内容:
列表
列表是一种有序可变的集合:
python
numbers = [1, 2, 3, 4, 5]
print(numbers[0])
numbers.append(6)
print(numbers)
元组
元组是一种有序不可变的集合:
python
coordinates = (10.0, 20.0)
print(coordinates[0])
集合
集合是一种无序不重复的集合:
python
unique_numbers = {1, 2, 3, 4, 5}
unique_numbers.add(6)
print(unique_numbers)
字典
字典是一种键值对集合:
python
student = {"name": "John", "age": 20}
print(student["name"])
student["age"] = 21
print(student)