Python用遍历语句输出字符串序列和内容
时间: 2023-05-16 17:06:38 浏览: 137
Python代码源码-实操案例-框架案例-使用Python逆序输出字符串.zip
可以使用 for 循环遍历字符串序列,然后使用 print 函数输出每个字符串的内容,示例代码如下:
```
str_list = ['hello', 'world', 'python']
for s in str_list:
print(s)
```
输出结果为:
```
hello
world
python
```
阅读全文