python 通过for语句输出列表中的每个元素 输出hello和world(科教)
时间: 2024-02-05 13:12:10 浏览: 163
可以使用 for 循环遍历列表中的每一个元素,然后输出相应的内容。
代码如下:
```python
lst = ['hello', 'world']
for item in lst:
print(item)
```
输出结果为:
```
hello
world
```
如果需要在输出时添加一些说明文字,可以这样做:
```python
lst = ['hello', 'world']
for item in lst:
print(item + '(科教)')
```
输出结果为:
```
hello(科教)
world(科教)
```
阅读全文