Edit Game
Lists in Python
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   7  Close
What will be the output of the following code segment?
4
________________ method adds a single item to the end of the list.
append
_______________ method can be used to add an element at a specified index in a list.
insert
What is the index number for 'Spain'?
2
What output will this code produce?
red
Which of the following commands will return the length of the list mylist?
B) len(mylist)
Which of the following is the best description of a list in Python?
a) A list is a collection of data that has an order and can be changed