for.md 2.8 KB
Newer Older
F
feilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
# Python 循环1

使用 for 遍历打印列表信息

```python
if __name__ == '__main__':
    list = [
        {
            "id": 966024429,
            "number": 2341,
            "title": "Question about license.",
            "body": "I would like to create a [winget](https://github.com/microsoft/winget-cli) package for jq. 🙏🏻"
        },
        {

            "id": 962477084,
            "number": 2340,
            "title": "visibility of wiki pages",
            "body": "The visibility of wiki pages to search engines is generally limited; for example, the search result for \"jq Cookbook\" looks like this:"
        }
    ]

    # TODO(You): 请在此实现遍历打印代码
```

请选出实现**不正确**的代码。

## template

```python
def test(list):
    i = 0
    for item in list:
        print('')
        print("## 第{}条信息".format(i))
        print("* id: {}".format(item['id']))
        print("* number: {}".format(item['number']))
        print("* title: {}".format(item['title']))
        print("* body: {}".format(item['body']))
        i += 1


if __name__ == '__main__':
    list = [
        {
            "id": 966024429,
            "number": 2341,
            "title": "Question about license.",
            "body": "I would like to create a [winget](https://github.com/microsoft/winget-cli) package for jq. 🙏🏻"
        },
        {

            "id": 962477084,
            "number": 2340,
            "title": "visibility of wiki pages",
            "body": "The visibility of wiki pages to search engines is generally limited; for example, the search result for \"jq Cookbook\" looks like this:"
        }
    ]
    test(list)
```

## 答案

```python
for i, item in list:
    print('')
    print("## 第{}条信息".format(i))
    print("* id: {}".format(item['id']))
    print("* number: {}".format(item['number']))
    print("* title: {}".format(item['title']))
    print("* body: {}".format(item['body']))
```

## 选项

### A

```python
i = 0
for item in list:
    print('')
    print("## 第{}条信息".format(i))
    print("* id: {}".format(item['id']))
    print("* number: {}".format(item['number']))
    print("* title: {}".format(item['title']))
    print("* body: {}".format(item['body']))
    i += 1
```

### B

```python
for i, item in enumerate(list):
    print('')
    print("## 第{}条信息".format(i))
    print("* id: {}".format(item['id']))
    print("* number: {}".format(item['number']))
    print("* title: {}".format(item['title']))
    print("* body: {}".format(item['body']))
```

### C

```python
for i in range(len(list)):
    item = list[i]
    print('')
    print("## 第{}条信息".format(i))
    print("* id: {}".format(item['id']))
    print("* number: {}".format(item['number']))
    print("* title: {}".format(item['title']))
    print("* body: {}".format(item['body']))
```