Industry-relevant training in Business, Technology, and Design to help professionals and graduates upskill for real-world careers.
Fun, engaging games to boost memory, math fluency, typing speed, and English skillsβperfect for learners of all ages.
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.
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
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')
π‘ Hint: Think of what happens when you `append` something to a list.
Question 2
True or False: Lists in Python are immutable.
π‘ Hint: Recall the definition of mutability.
Solve 2 more questions and get performance evaluation
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