Computer Science

Given a list L= [10, 20, 30, 40, 50, 60, 70], what would L[-3 : 99] return?

  1. [20, 30, 40]
  2. [30, 40, 50]
  3. [40, 50, 60]
  4. [50, 60, 70]

Python List Manipulation

15 Likes

Answer

[50, 60, 70]

Answered By

3 Likes


Related Questions