已知列表 fruits=['apple','pear', 'banana','pineapple','avocado'],请将'blueberry' 添加到列表中,请将'apple' 从列表中删除,请判断'pineapple' 是在什么位置,请在'pineapple' 前插入'lemon',请判断'mango' 是否在列表中,请计算fruits中一共有几种水果。
时间: 2023-12-24 09:02:23 浏览: 91
8类水果图片数据集(每类100张图片左右)['橘子','菠萝','苹果','木瓜','火龙果','香蕉','樱桃','芒果']
5星 · 资源好评率100%
好的,我来回答您的问题。
1. 将'blueberry' 添加到列表中:
```python
fruits.append('blueberry')
```
2. 将'apple' 从列表中删除:
```python
fruits.remove('apple')
```
3. 判断'pineapple' 是在什么位置:
```python
index = fruits.index('pineapple')
print(index) # 输出为3
```
4. 在'pineapple' 前插入'lemon':
```python
index = fruits.index('pineapple')
fruits.insert(index, 'lemon')
```
5. 判断'mango' 是否在列表中:
```python
if 'mango' in fruits:
print('mango 在列表中')
else:
print('mango 不在列表中')
```
6. 计算fruits中一共有几种水果:
```python
num_fruits = len(set(fruits))
print(num_fruits) # 输出为5
```
希望我的回答对您有所帮助!
阅读全文