> For the complete documentation index, see [llms.txt](https://www.pythonclassroom.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.pythonclassroom.com/lists/lists-strings/lists-problems.md).

# Problems

## Problem 1

Create a list of the names of the first five picks of the 2020 NFL Draft.  Using a for loop, print the names.

![Source: https://www.nfl.com/draft/tracker/picks](https://729613953-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LVVKHMnpflHwghmbdgi%2F-M8CYMAajJvJdQPXxpnq%2F-M8CZVZ-KxQ0buAsn2io%2Fimage.png?alt=media\&token=8aae3043-3374-42d0-a009-1b6785d9ee4e)

### Sample Output

![](https://729613953-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LVVKHMnpflHwghmbdgi%2F-M8MJ8GDVR4n9G2QbQ0D%2F-M8MJgp6h1O3rrwoQMXt%2Fimage.png?alt=media\&token=98f53f0b-51e3-4bbf-afd2-5257540cf7e4)

## Problem 2

Create a list of the colleges of the first five picks of the 2019 NFL Draft.  Using a for loop, print the college they attended.

![Source: https://www.nfl.com/draft/tracker/picks?year=2019](https://729613953-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LVVKHMnpflHwghmbdgi%2F-M8CYMAajJvJdQPXxpnq%2F-M8C_27EmRH3--CxG5_f%2Fimage.png?alt=media\&token=5e4b9450-4eb8-4788-a6cf-d62274738e79)

### Sample Output

![](https://729613953-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LVVKHMnpflHwghmbdgi%2F-M8MJ8GDVR4n9G2QbQ0D%2F-M8MKAnovCNIgmqYIMip%2Fimage.png?alt=media\&token=4be11cb6-915e-4c6d-b89b-5be66b7e68fc)

## Problem 3

Create a list of 5 colleges or universities. Using a for loop, print the list.

![](https://729613953-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LVVKHMnpflHwghmbdgi%2F-M8MKEqbY_dnVJfSg6Eb%2F-M8MQzF1C-0BwiPaqhE1%2Fimage.png?alt=media\&token=3db8da79-73b6-4dbb-be1b-ff1e56011390)

Create a loop to ask the user to enter 5 additional universities to your list.

Print the list.

![](https://729613953-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LVVKHMnpflHwghmbdgi%2F-M8CYMAajJvJdQPXxpnq%2F-M8C_yayvxdwB2DtKbP3%2Fimage.png?alt=media\&token=ed3d22d4-b35b-4972-813f-0bc2fc9d7feb)

![Source: http://njcomehome.org/](https://729613953-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LVVKHMnpflHwghmbdgi%2F-M8CYMAajJvJdQPXxpnq%2F-M8C_dO-_6lx3knqNVxX%2Fimage.png?alt=media\&token=ca690e34-1869-47e3-b3b0-7cc3d9cb6986)

### Sample Output

![](https://729613953-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LVVKHMnpflHwghmbdgi%2F-M8MSOry_5mRtEdTGOqW%2F-M8MVFcXjY2BoTkovz5e%2Fimage.png?alt=media\&token=3707ca07-3c63-4cc4-9be6-0a00733ad81a)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://www.pythonclassroom.com/lists/lists-strings/lists-problems.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
