创建列表以列表list1 = [""Ilift" , "is" , ""short""]和 list2=["You" , "need" , "python"],并完成以下任务: (1)输出 listl中的第一个元素lft及其索引(下标)。(2)在short后添加!用python代码编写
时间: 2023-07-03 08:14:33 浏览: 109
day05 状态+观察者+备忘录+迭代器+中介者+访问者
好的,下面是用 Python 编写的代码实现:
```
# 创建列表
list1 = ["Ilift", "is", "short"]
list2 = ["You", "need", "python"]
# 输出 list1 中的第一个元素及其索引
print("list1 中的第一个元素是:", list1[0])
print("list1 中第一个元素的索引是:", list1.index("Ilift"))
# 在 short 后添加 !
list1[2] += "!"
print("添加后的 list1:", list1)
```
这段代码中,我们首先创建了两个列表 `list1` 和 `list2`。然后,我们通过索引 `0` 访问 `list1` 中的第一个元素,也就是字符串 `"Ilift"`,并使用 `index()` 方法查找 `"Ilift"` 在 `list1` 中的索引值。接着,我们使用 `+=` 运算符在 `list1` 中的最后一个元素上添加了一个感叹号 `"!"`,并使用 `print()` 函数输出添加后的 `list1`。
你只需要将这段代码复制到 Python 环境中运行即可。
阅读全文