Given the following line of code, which list is produced by the expression `values[3:8]`?

```python
values = [79, 40, 18, 32, 95, 66, 58, 51, 20, 62]
```

A. [15, 32, 95, 66, 58, 51, 20]

B. [32, 95, 66, 58, 81]

C. [32, 95, 66, 58, 81, 20]

D. [15, 32, 95, 66, 58, 81]

Answer :

Answer:

The list produced by the expression values[3:8] is [32, 95, 66, 58, 51, 20].

Explanation: