Q:

Suppose list1 is [1, 3, 2], What is list1 * 2 ?

0

Suppose list1 is [1, 3, 2], What is list1 * 2 ?


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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

[1, 3, 2, 1, 3, 2] .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python Multiple Choice Questions And Answers

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Which of the following statement is correct... >>
<< Assume the output : list1 = [1, 2, 3, 4] list2 = [...