python中的for循环示例
时间: 2023-11-07 13:10:12 浏览: 63
python 用for循环实现1~100之间的偶数求和 示例
5星 · 资源好评率100%
当然可以,以下是一个简单的Python for循环示例:
```python
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
```
输出结果为:
```
apple
banana
cherry
```
阅读全文