# Python 列表示例代码
# 创建一个简单的列表
fruits = ['apple', 'banana', 'cherry']
# 访问列表中的元素
print(fruits[0]) # 输出: apple
# 修改列表中的元素
fruits[1] = 'orange'
print(fruits) # 输出: ['apple', 'orange', 'cherry']
# 添加元素到列表末尾
fruits.append('grape')
print(fruits) # 输出: ['apple', 'orange', 'cherry', 'grape']
# 删除列表中的元素
fruits.remove('apple')
print(fruits) # 输出: ['orange', 'cherry', 'grape']
# 获取列表的长度
length = len(fruits)
print(length) # 输出: 3
# 遍历列表
for fruit in fruits:
print(fruit)
# 列表切片
sliced_fruits = fruits[1:3]
print(sliced_fruits) # 输出: ['cherry', 'grape']
# 列表排序
fruits.sort()
print(fruits) # 输出: ['cherry', 'grape', 'orange']
以上代码展示了如何创建、访问、修改、添加、删除、获取长度、遍历、切片和排序 Python 列表。
上一篇:python class
大家都在看
python列表
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站