Computer Science

If L = [1, 2] then L * 2 will yield

  1. [1, 2] * 2
  2. [1, 2, 2]
  3. [1, 1, 2, 2]
  4. [1, 2, 1, 2]

Python List Manipulation

29 Likes

Answer

[1, 2, 1, 2]

Answered By

9 Likes


Related Questions