Module 7: Strings
In this module, we will learn how to work with text (called Strings) in Python, how to access parts of a string, and how to use common string methods.
Module 8: Lists
In this module, we will learn about Lists. A list is one of the most useful data structures in Python. It allows you to store multiple items in a single variable.
Module 9: Tuples
In this module, we will learn about Tuples. A tuple is used to store multiple items in a single variable, similar to a list. However, tuples have some key differences.
Module 10: Sets
In this module, we will learn about Sets. Sets are used to store multiple unique values in a single variable.
Module 11: Dictionaries
In this module, we will learn about Dictionaries. A dictionary stores data in Key-Value Pairs (like a phonebook where name is the Key and phone number is the Value).
Module 12: Functions
In this module, we will learn about Functions. A function is a block of reusable code designed to perform a specific task.