Practice What is a List? - 8.1 | Lists in Python | Python Programming Language
Students

Academic Programs

AI-powered learning for grades 8-12, aligned with major curricula

Professional

Professional Courses

Industry-relevant training in Business, Technology, and Design

Games

Interactive Games

Fun games to boost memory, math, typing, and English skills

What is a List?

8.1 - What is a List?

Enroll to start learning

You’ve not yet enrolled in this course. Please enroll for free to listen to audio lessons, classroom podcasts and take practice test.

Learning

Practice Questions

Test your understanding with targeted questions

Question 1 Easy

Create a list of three vegetables in Python.

💡 Hint: Think of vegetables you know.

Question 2 Easy

Access the second item in the list fruits = ["apple", "banana", "cherry"].

💡 Hint: Remember, indexing starts at zero.

4 more questions available

Interactive Quizzes

Quick quizzes to reinforce your learning

Question 1

What does the following code do? fruits.append('orange')

Removes 'orange' from fruits
Adds 'orange' to fruits
Replaces 'orange' in fruits

💡 Hint: Think of what happens when you `append` something to a list.

Question 2

True or False: Lists in Python are immutable.

True
False

💡 Hint: Recall the definition of mutability.

2 more questions available

Challenge Problems

Push your limits with advanced challenges

Challenge 1 Hard

Create a Python program that accepts a list of ten numbers from the user and then displays the highest and lowest numbers in the list.

💡 Hint: Make sure to convert input from string to integer.

Challenge 2 Hard

Build a nested list to represent a 3x3 grid, and write a function that prints the grid in a readable format.

💡 Hint: Use a loop to go through each sub-list.

Get performance evaluation

Reference links

Supplementary resources to enhance your learning experience.