Q:

Output is: l = [1,2,6,5,7,8] l.insert(9)

0

Output is

l = [1,2,6,5,7,8] l.insert(9)

  1. l=[9,1,2,6,5,7,8]
  2. Error
  3. l=[1,2,6,5,9.7,8] (insert randomly at any position)
  4. l=[1,2,6,5,7,8,9]

All Answers

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

Correct Answer:

Error

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
Guess the output: a=[14,52,7] b=a.copy() b is a... >>
<< Assume the output values : [[3, 4, 5, 1], [33, 6, ...