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

Academics

AI-Powered learning for Grades 8–12, aligned with major Indian and international curricula.

Professionals

Professional Courses

Industry-relevant training in Business, Technology, and Design to help professionals and graduates upskill for real-world careers.

Games

Interactive Games

Fun, engaging games to boost memory, math fluency, typing speed, and English skillsβ€”perfect for learners of all ages.

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 related to the topic.

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.

Practice 4 more questions and get performance evaluation

Interactive Quizzes

Engage in quick quizzes to reinforce what you've learned and check your comprehension.

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.

Solve 2 more questions and get performance evaluation

Challenge Problems

Push your limits with challenges.

Question 1

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.

Question 2

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.

Challenge and get performance evaluation