用python写一个列表的增删改查
时间: 2023-05-18 07:04:14 浏览: 74
python列表的增删改查实例代码
可以使用以下代码实现列表的增删改查:
# 创建一个空列表
my_list = []
# 添加元素到列表
my_list.append('apple')
my_list.append('banana')
my_list.append('orange')
# 打印列表
print(my_list)
# 修改列表中的元素
my_list[1] = 'pear'
# 打印修改后的列表
print(my_list)
# 删除列表中的元素
del my_list[2]
# 打印删除后的列表
print(my_list)
# 查找列表中的元素
if 'apple' in my_list:
print('apple is in the list')
else:
print('apple is not in the list')
阅读全文