创建列表以列表 list1 = ["life", "is", "short"] 和 list2 = ["You", "need", "python"],并完成以下任务: (1) 输出 list1 中的第一个元素 life 及其索引(下标)。 (2) 在 short 后面增加一个!
时间: 2023-10-05 07:10:13 浏览: 144
Python数据类型之List列表实例详解
好的,不会透露您的任何要求。以下是您的答案:
```python
# 创建两个列表
list1 = ["life", "is", "short"]
list2 = ["You", "need", "python"]
# 输出 list1 中的第一个元素及其索引
print("list1 第一个元素为:", list1[0])
print("list1 第一个元素的索引为:", list1.index("life"))
# 在 short 后面增加一个!
list1[-1] += "!"
print("修改后的 list1 为:", list1)
```
输出结果为:
```
list1 第一个元素为: life
list1 第一个元素的索引为: 0
修改后的 list1 为: ['life', 'is', 'short!']
```
阅读全文