python的for循环怎么写
时间: 2023-06-12 13:07:12 浏览: 79
Python中的for循环可以使用两种方式来实现:
1.使用range函数:
```
for i in range(10): # 从0到9循环
print(i)
```
2.使用in关键字:
```
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
```
以上两种方式在Python中都是常用的for循环写法。其中,第二种方式可以用于任何可迭代对象,包括列表、元组、集合、字典等。
阅读全文