在Python中Set和List的区别

在Python中Set和List的区别

在本文中,我们将讨论Python中Set和List的区别。Set和List是Python中的数据结构,用于有效地存储和组织数据。

List

在Python中,List类似于动态大小的数组,可以在不同的编程语言中声明,如C++中的向量和Java中的ArrayList。Python中的列表不一定是同质的,这使得列表成为Python的强大工具之一。

列表的重要特点如下:

  • 它是Python提供的数据类型。用户可以将它写成用逗号分隔的值,并将其写在方括号之间。
  • 它可以转换为不同的数据类型,用户可以在其中存储任何数据元素。因此,列表是可变的。
  • 它是有序的。

示例:

# let's see the Python code for demonstrating the List Data Structure. 

# First, we will create the List
List = []
print("JavaTpoint data List: ")
print(List)

# we are creating the List of numbers
List = [12, 24, 64, 18, 3, 201, 65, 35, 27, 29, 58, 42, 87, 30, 28, 79, 4, 90]
print("\n The JavaTpoint List of numbers: ")
print(List)

# Now, we will create the List of strings and will access it using index method.

List = ["let's", "learn", "Python", "from", "JavaTpoint"]
print("\nList Items: ")
print(List[0]) 
print(List[2])
print(List[1])
print(List[4])
print(List[3])
# Now we will check is list are ordered

List1 = [9, 3, 6, 19, 67, "Hey", "JavaTpoint", 78, 2, 1]
List2 = [9, 3, 6, 19, 67, 78, "Hey", "JavaTpoint", 2, 1]
print("List1 = ", List1)
print("List2 = ", List2)
List1 == List2

输出:

JavaTpoint data List: 
[]

 The JavaTpoint List of numbers: 
[12, 24, 64, 18, 3, 201, 65, 35, 27, 29, 58, 42, 87, 30, 28, 79, 4, 90]

List Items: 
let's
Python
learn
JavaTpoint
from

List1 =  [9, 3, 6, 19, 67, 'Hey', 'JavaTpoint', 78, 2, 1]
List2 =  [9, 3, 6, 19, 67, 78, 'Hey', 'JavaTpoint', 2, 1]
False

集合

集合 是Python中无序的数据类型集合,它们是可变和可迭代的。集合中不会有任何重复的相同元素。在Python中,使用集合存储工具相比列表的主要优势之一是它提供了高度优化的方法来检查集合中特定项目的存在。

以下是集合的重要特征:

  • 它是Python中的无序项目或数据类型的集合。
  • 存储在其中的元素的顺序是不固定的。集合元素的顺序可以更改。
  • 一组元素在花括号{}之间定义。
  • 尽管只有不可变元素存储在集合中,但它是可变的。

示例:

# let's see the Python code for demonstrating the Set Data Structure. 

# First, we will create the Set
setA = set()
print("Intial JavaTpoint Set: ")
print(setA)

# we are creating the Set by using Constructor
# we will use object for Storing String)
String = 'lets learn Python from JavaTpoint'
setA = set(String)
print("\n Storing the set by using the Object: " )
print(setA)

# now, we will create the Set by using the list
setA = set(["let's", "learn", "Python", "from", "JavaTpoint"])
print("\n Storing the set by using the List: ")
print(setA)

输出:

Intial JavaTpoint Set: 
set()

 Storing the set by using the Object: 
{'t', 'v', 'a', 'r', 'T', 'l', 'n', 'y', 'e', ' ', 'h', 'P', 'p', 'f', 'o', 's', 'i', 'J', 'm'}

 Storing the set by using the List: 
{'JavaTpoint', "let's", 'learn', 'from', 'Python'}

列表与集合

列表 集合
列表是有序的。 集合是无序的。
列表是可变的。 集合是可变的,但只存储不可变的元素。
列表中的元素可以被修改或替换。 集合中的元素无法被修改或替换。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程