Given scores = [88, 92, 75, 95, 83, 90, 87], print the last 3 scores using a negative-index slice
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Given scores = [88, 92, 75, 95, 83, 90, 87], print the last 3 scores using a negative-index slice. Then print all scores except the last 2 by omitting the start and using a negative end index.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.