Python 数据结构:列表、元组、集合和字典

List

  • A List 中是动态数组 Python,允许存储多个不同的值,并且元素在初始化后可以更改。
  • 要声明 a List,请使用方括号 []

例子:

# Declare a List containing integers  
numbers = [1, 2, 3, 4, 5]  
  
# Access and print elements in the List  
print(numbers[0])  # Output: 1  
print(numbers[2])  # Output: 3  
  
# Modify the value of an element in the List  
numbers[1] = 10  
print(numbers)  # Output: [1, 10, 3, 4, 5]  

 

Tuple

  • A Tuple 是 中的不可变数据结构 Python,通常用于保护数据在初始化后不被更改。
  • 要声明 a Tuple,请使用括号 ()

例子:

# Declare a Tuple containing information of a student  
student_info =('John', 25, 'Male', 'New York')  
  
# Access and print elements in the Tuple  
print(student_info[0])  # Output: John  
print(student_info[2])  # Output: Male  

 

Set

  • A Set 是一种不包含重复元素且无顺序的数据结构。
  • 要声明 a Set,请使用花括号 {}set() 函数。

例子:

# Declare a Set containing colors  
colors = {'red', 'green', 'blue', 'red', 'yellow'}  
  
# Print the Set to check duplicate elements are removed  
print(colors)  # Output: {'red', 'green', 'blue', 'yellow'}  

 

Dictionary

  • A Dictionary 是一种无序数据结构,以键值对的形式存储信息。
  • 要声明 a Dictionary,请使用花括号 {} 并用冒号分隔每个键值对 :

示例

# Declare a Dictionary containing information of a person  
person = {'name': 'John', 'age': 30, 'city': 'New York'}  
  
# Access and print values from the Dictionary  
print(person['name'])  # Output: John  
print(person['age'])   # Output: 30  
  
# Modify the value of a key in the Dictionary  
person['city'] = 'Los Angeles'  
print(person)  # Output: {'name': 'John', 'age': 30, 'city': 'Los Angeles'}  

这些数据结构允许程序员灵活地操作和处理数据 Python,适合各种编程场景和目的。