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
What are the three types of primary number data types in Python?
💡 Hint: Think about whole numbers, decimal numbers, and numbers with imaginary parts.
Question 2
Easy
What does a list contain?
💡 Hint: Consider how you can add or remove items from a list.
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 is a valid data type in Python?
💡 Hint: Think about what kinds of data types you've learned about.
Question 2
True or False: Lists in Python are immutable.
💡 Hint: Consider if you can change the contents of a list.
Solve 1 more question and get performance evaluation
Push your limits with challenges.
Question 1
Create a function that accepts a list of numbers and returns True if any number is greater than 10, else False.
💡 Hint: Think about how you can iterate through each number in the list.
Question 2
Build a dictionary that counts occurrences of each character in a string. For example, in 'hello', the count should be {'h': 1, 'e': 1, 'l': 2, 'o': 1}.
💡 Hint: Consider how you can use a dictionary to store counts as you loop through the string.
Challenge and get performance evaluation