Python Lists

Python Lists

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

3 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which of these pieces of code would return the name "Harry" from the following list?
nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]
Options:
nameList() ,
nameList[1] ,
NameList(4) ,
nameList["4"]

Back

nameList[1]

2.

FLASHCARD QUESTION

Front

The list needs one more name added to the end - "Felipe". Which piece of code below would do this?
nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]
Options:
nameList.append(Felipe),
append(nameList,"Felipe"),
nameList.append["Felipe",7],
nameList.append("Felipe")

Back

nameList.append("Felipe")

3.

FLASHCARD QUESTION

Front

To insert the string "strawberries" in the first position of a list we use

Back

fruit.insert(0, "strawberries")