python的for循环
时间: 2023-05-28 16:07:02 浏览: 83
Python的for循环是一种循环结构,可以遍历序列(如列表、元组、字符串)或其他可迭代对象(如字典、集合)中的元素,执行指定的操作。语法如下:
```python
for 变量 in 序列:
操作
```
其中,变量是每次循环从序列中取出的元素,操作是需要执行的语句。在循环执行时,每次都会取出序列中的下一个元素,直到序列中的所有元素都被遍历完毕为止。
示例:
```python
# 遍历列表中的元素
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
# 遍历字符串中的字符
for char in "hello":
print(char)
# 遍历字典中的键
person = {"name": "Alice", "age": 30, "city": "New York"}
for key in person:
print(key)
# 遍历集合中的元素
numbers = {1, 2, 3, 4, 5}
for num in numbers:
print(num)
```
阅读全文