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.
Practice Questions
Test your understanding with targeted questions
Create a list of three vegetables in Python.
💡 Hint: Think of vegetables you know.
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
What does the following code do? fruits.append('orange')
💡 Hint: Think of what happens when you `append` something to a list.
True or False: Lists in Python are immutable.
💡 Hint: Recall the definition of mutability.
2 more questions available
Challenge Problems
Push your limits with advanced challenges
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.
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.