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

32 Likes

Answer

[1, 2, 1, 2]

Answered By

11 Likes


Related Questions