{site_name}

{site_name}

🌜 搜索

Python数组是一种数据结构,它可以容纳多个同类型的元素,并按照顺序进行存储和访问

Python 𝄐 0
python编程,python代码大全,python安装教程,python在线咨询,python123,python编程有什么用
Python数组是一种数据结构,它可以容纳多个同类型的元素,并按照顺序进行存储和访问。Python中的数组是可变的,这意味着您可以在运行时添加或删除数组中的元素。

Python中有两种主要的数组类型:列表(list)和元组(tuple)。列表是用方括号“[]”表示的,元组则用圆括号“()”表示。下面是这两种类型数组的例子:

python
# 列表(list)的例子
fruits = ["apple", "banana", "cherry"]
print(fruits) # 输出: ['apple', 'banana', 'cherry']

# 访问列表中的元素
print(fruits[0]) # 输出: apple
print(fruits[1]) # 输出: banana

# 向列表中添加元素
fruits.append("orange")
print(fruits) # 输出: ['apple', 'banana', 'cherry', 'orange']

# 元组(tuple)的例子
colors = ("red", "green", "blue")
print(colors) # 输出: ('red', 'green', 'blue')

# 访问元组中的元素
print(colors[0]) # 输出: red
print(colors[1]) # 输出: green

# 尝试向元组中添加元素会导致 TypeError 错误
colors.append("yellow") # 抛出 TypeError 错误