Python List Comprehensions Quiz

Python List Comprehensions Quiz

12th Grade

15 Qs

quiz-placeholder

Similar activities

list 6th

list 6th

7th Grade - University

20 Qs

Python Lists

Python Lists

9th - 12th Grade

15 Qs

Strings, Lists & Tuples

Strings, Lists & Tuples

9th - 12th Grade

20 Qs

Python Lists v2

Python Lists v2

9th - 12th Grade

15 Qs

Python Review

Python Review

9th - 12th Grade

16 Qs

Python Arrays

Python Arrays

9th - 12th Grade

13 Qs

list in python

list in python

12th Grade

20 Qs

Python list, if

Python list, if

6th - 12th Grade

20 Qs

Python List Comprehensions Quiz

Python List Comprehensions Quiz

Assessment

Interactive Video

Computers

12th Grade

Hard

Created by

Nicol Sutherland

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why does Python provide list comprehensions?

To increase the length of code

To simplify the process of creating lists

To make code more complex

To make lists immutable

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What surrounds a list comprehension in Python?

Brackets

Angle brackets

Curly braces

Parentheses

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a list comprehension, what follows the expression?

A variable assignment

A function call

A for loop

A while loop

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you create a list of the squares of the first 100 positive integers using list comprehensions?

[i**2 for i in range(0, 100)]

[i*2 for i in range(1, 101)]

[i^2 for i in range(1, 101)]

[i**2 for i in range(1, 101)]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What operator is used to find the remainder when dividing by a number in Python?

/

//

%

**

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you filter a list comprehension to include only certain items?

Using a break statement

Using a while loop

Using a continue statement

Using an if clause

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method can be used to check if a string starts with a specific letter?

endswith()

find()

startswith()

contains()

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?